Smartsheet.Api.OAuth.OAuthFlowBuilder.SetTokenURL C# (CSharp) Méthode

SetTokenURL() public méthode

Set the token URL.
if any argument is null/empty string
public SetTokenURL ( string tokenURL ) : OAuthFlowBuilder
tokenURL string the token Url
Résultat OAuthFlowBuilder
        public virtual OAuthFlowBuilder SetTokenURL(string tokenURL)
        {
            Util.ThrowIfNull(tokenURL);

            this.tokenURL = tokenURL;
            return this;
        }