UsernameToken.IsExpired Property
Gets a value indicating whether the UsernameToken is expired.
Namespace: Microsoft.Web.Services3.Security.Tokens
Assembly: Microsoft.Web.Services3 (in microsoft.web.services3.dll)
Usage
'Usage
Dim usernameToken1 As UsernameToken
Dim returnValue As Boolean
returnValue = usernameToken1.IsExpired
Syntax
'Declaration
Public Overrides ReadOnly Property IsExpired() As Boolean
public override bool IsExpired {get;}
public:
property virtual bool IsExpired {
bool get();
}
override public boolean get_IsExpired();
public override function get IsExpired() : Boolean;
Property Value
true if the UsernameToken is expired; otherwise, false .
Remarks
The IsCurrent and IsExpired properties both indicate whether a security token is valid. The difference, is that a security token with an IsCurrent property set to false , may become valid at a later time. That is, if a security token is issued by a security token service, a security token service specifies the period of time the security token is valid. It is possible for the security token service to set the Created property to a value later than the current time, similar to a post-dated check. In that scenario, during the period of time between when the security token is issued and the date and time specified in the value of the Created property, the value of the IsCurrent property is false , whereas the IsExpired property is also false .
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Platforms
Development Platforms
Windows XP Home Edition, Windows XP Professional, Windows Server 2003, Windows 2000, Windows 2000 Server, Windows 2000 Advanced Server
Target Platforms
See Also
Reference
UsernameToken Class
UsernameToken Members
Microsoft.Web.Services3.Security.Tokens Namespace