public PassiveRepositorySessionSecurityTokenCache(ITokenCacheRepository tokenCacheRepository, SessionSecurityTokenCache inner) { if (tokenCacheRepository == null) throw new ArgumentNullException("tokenCacheRepository"); if (inner == null) throw new ArgumentNullException("inner"); this.tokenCacheRepository = tokenCacheRepository; this.inner = inner; }
public WrappedTokenCache(SessionSecurityTokenCache tokenCache, SctClaimsHandler sctClaimsHandler) { if (tokenCache == null) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("tokenCache"); } if (sctClaimsHandler == null) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("sctClaimsHandler"); } _tokenCache = tokenCache; _claimsHandler = sctClaimsHandler; }
/// <summary> /// Initializes an instance of <see cref="FederatedSecurityTokenManager"/>. /// </summary> /// <param name="parentCredentials">ServiceCredentials that created this instance of TokenManager.</param> /// <exception cref="ArgumentNullException">The argument 'parentCredentials' is null.</exception> public FederatedSecurityTokenManager( ServiceCredentials parentCredentials ) : base( parentCredentials ) { if ( parentCredentials == null ) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull( "parentCredentials" ); } if ( parentCredentials.IdentityConfiguration == null ) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull( "parentCredentials.IdentityConfiguration" ); } _exceptionMapper = parentCredentials.ExceptionMapper; _securityTokenHandlerCollection = parentCredentials.IdentityConfiguration.SecurityTokenHandlers; _tokenCache = _securityTokenHandlerCollection.Configuration.Caches.SessionSecurityTokenCache; _cookieTransforms = SessionSecurityTokenHandler.DefaultCookieTransforms; }