Beispiel #1
0
        public Response <bool> Remove(Request <SessionCacheKey> request)
        {
            var data = Service.Remove(request.Payload);

            return(new Response <bool> {
                Payload = data
            });
        }
Beispiel #2
0
 public override void Remove(SessionSecurityTokenCacheKey key)
 {
     _internalCache.Remove(key);
     cache.Remove(new bUtility.TokenCache.Types.SessionSecurity.SessionCacheKey
     {
         EndpointId    = key.EndpointId,
         ContextId     = key?.ContextId?.ToString(),
         KeyGeneration = GetKeyGenerationString(key)
     });
 }