SecurityContextSecurityTokenResolver Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the SecurityContextSecurityTokenResolver class.
Overloads
SecurityContextSecurityTokenResolver(Int32, Boolean) |
Initializes a new instance of the SecurityContextSecurityTokenResolver class. |
SecurityContextSecurityTokenResolver(Int32, Boolean, TimeSpan) |
Initializes a new instance of the SecurityContextSecurityTokenResolver class with the specified security context cache capacity and clock skew maximum. |
SecurityContextSecurityTokenResolver(Int32, Boolean)
Initializes a new instance of the SecurityContextSecurityTokenResolver class.
public:
SecurityContextSecurityTokenResolver(int securityContextCacheCapacity, bool removeOldestTokensOnCacheFull);
public SecurityContextSecurityTokenResolver (int securityContextCacheCapacity, bool removeOldestTokensOnCacheFull);
new System.ServiceModel.Security.Tokens.SecurityContextSecurityTokenResolver : int * bool -> System.ServiceModel.Security.Tokens.SecurityContextSecurityTokenResolver
Public Sub New (securityContextCacheCapacity As Integer, removeOldestTokensOnCacheFull As Boolean)
Parameters
- securityContextCacheCapacity
- Int32
The size of the security context cache.
- removeOldestTokensOnCacheFull
- Boolean
true
if the oldest tokens should be removed when the cache is full; otherwise, false
.
Remarks
If removeOldestTokensOnCacheFull
is false
, AddContext
throws a QuotaExceededException if the cache capacity has been reached.
Applies to
SecurityContextSecurityTokenResolver(Int32, Boolean, TimeSpan)
Initializes a new instance of the SecurityContextSecurityTokenResolver class with the specified security context cache capacity and clock skew maximum.
public:
SecurityContextSecurityTokenResolver(int securityContextCacheCapacity, bool removeOldestTokensOnCacheFull, TimeSpan clockSkew);
public SecurityContextSecurityTokenResolver (int securityContextCacheCapacity, bool removeOldestTokensOnCacheFull, TimeSpan clockSkew);
new System.ServiceModel.Security.Tokens.SecurityContextSecurityTokenResolver : int * bool * TimeSpan -> System.ServiceModel.Security.Tokens.SecurityContextSecurityTokenResolver
Public Sub New (securityContextCacheCapacity As Integer, removeOldestTokensOnCacheFull As Boolean, clockSkew As TimeSpan)
Parameters
- securityContextCacheCapacity
- Int32
The size of the security context cache.
- removeOldestTokensOnCacheFull
- Boolean
true
if the oldest tokens should be removed when the cache is full; otherwise, false
.
- clockSkew
- TimeSpan
The maximum allowable time difference between client and server clock settings.
Applies to
.NET