1 write to tokenCache
System.ServiceModel (1)
System\ServiceModel\Security\Tokens\SecurityContextSecurityTokenResolver.cs (1)
39this.tokenCache = new SecurityContextTokenCache(this.capacity, this.removeOldestTokensOnCacheFull, clockSkew);
9 references to tokenCache
System.ServiceModel (9)
System\ServiceModel\Security\Tokens\SecurityContextSecurityTokenResolver.cs (9)
68this.tokenCache.AddContext(token); 73return this.tokenCache.TryAddContext(token); 79this.tokenCache.ClearContexts(); 84this.tokenCache.RemoveContext(contextId, generation, false); 89this.tokenCache.RemoveAllContexts(contextId); 94return this.tokenCache.GetContext(contextId, generation); 99return this.tokenCache.GetAllContexts(contextId); 104this.tokenCache.UpdateContextCachingTime(context, expirationTime); 112token = this.tokenCache.GetContext(sctSkiClause.ContextId, sctSkiClause.Generation);