CoreTweet.OAuth2.GetInvalidateTokenUrl C# (CSharp) Method

GetInvalidateTokenUrl() private static method

private static GetInvalidateTokenUrl ( CoreTweet.ConnectionOptions options ) : Uri
options CoreTweet.ConnectionOptions
return System.Uri
        private static Uri GetInvalidateTokenUrl(ConnectionOptions options)
        {
            if (options == null) options = ConnectionOptions.Default;
            return new Uri(InternalUtils.GetUrl(options, options.ApiUrl, false, "oauth2/invalidate_token"));
        }