Share via


UsernameToken.IsCurrent Property

Gets a value indicating whether the security token is currently valid.

Namespace: Microsoft.Web.Services2.Security.Tokens
Assembly: Microsoft.Web.Services2 (in microsoft.web.services2.dll)

Usage

'Usage
Dim usernameToken1 As UsernameToken

Dim returnValue As Boolean
returnValue = usernameToken1.IsCurrent

Syntax

'Declaration
Public Overrides ReadOnly Property IsCurrent() As Boolean
public override bool IsCurrent {get;}
public: property virtual Boolean IsCurrent{
    Boolean get();
}
public boolean get_IsCurrent();
public override function get IsCurrent() : Boolean;

Property Value

true if the security token is currently valid; 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 !:Microsoft.Web.Services2.Security.UsernameToken.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 !:Microsoft.Web.Services2.Security.UsernameToken.Created property, the value of the IsCurrent property is false, whereas the IsExpired property is also false .

Use the IsCurrent property to check the validity of a security token that has been added to a cache, such as the PolicyEnforcementSecurityTokenCache, before using it.

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 Longhorn, and Windows 2000

Target Platforms

Windows 2000, Windows 2000 Server, Windows 2000 Advanced Server, Windows XP Home Edition, Windows XP Professional, Windows Server 2003, Windows Longhorn, Pocket PC, Windows CE, Smart Phone

See Also

Reference

UsernameToken Class
Microsoft.Web.Services2.Security.Tokens Namespace

Other Resources

UsernameToken Members