ServiceStack.Auth.AuthenticateService.Delete C# (CSharp) Method

Delete() public method

public Delete ( Authenticate request ) : object
request Authenticate
return object
        public object Delete(Authenticate request)
        {
            if (ValidateFn != null)
            {
                var response = ValidateFn(this, HttpMethods.Delete, request);
                if (response != null) return response;
            }

            this.RemoveSession();

            return new AuthenticateResponse();
        }
    }