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

            return(new Response <bool> {
                Payload = data
            });
        }
Beispiel #2
0
 public override void RemoveAll(string endpointId)
 {
     _internalCache.RemoveAll(endpointId);
     cache.RemoveAllByEndpointId(new bUtility.TokenCache.Types.SessionSecurity.Endpoint
     {
         EndpointId = endpointId
     });
 }