BridgeStack.StackClient.AccessTokenDeauthenticate C# (CSharp) Метод

AccessTokenDeauthenticate() публичный Метод

Makes a request to API method /apps/{accessTokens}/de-authenticate

Documentation can be found following the link below:

https://api.stackexchange.com/docs/application-de-authenticate

public AccessTokenDeauthenticate ( string token ) : IBridgeResponseCollection
token string The single access token in {accessTokens}.
Результат IBridgeResponseCollection
        public override IBridgeResponseCollection<AccessToken> AccessTokenDeauthenticate(string token)
        {
            return AccessTokensDeauthenticate(new[] { token });
        }
StackClient