PassportIdentity.TimeSinceSignIn Property
.NET Framework (current version)
Gets the time, in seconds, since a member's logon to the Passport logon server. This class is deprecated.
Assembly: System.Web (in System.Web.dll)
Property Value
Type: System.Int32The time, in seconds, since a member's logon to the Passport logon server.
This class has been deprecated and is no longer supported. Microsoft Passport Network has been replaced by Windows Live ID. For more information about how to use Windows Live ID to authenticate users in a Web application, see Windows Live ID SDK.
// Declare new PassportIdendity object as variable newPass. System.Web.Security.PassportIdentity newPass = new System.Web.Security.PassportIdentity(); // Build a string with the elapsed time since the user last signed in with the Passport Authority. string sElapsedTimeSignIn = "Elapsed time since SignIn: " + newPass.TimeSinceSignIn.ToString() + " seconds.";
.NET Framework
Available since 1.1
Available since 1.1
Show: