Smartsheet.Api.OAuth.OAuthFlowBuilder.SetRedirectURL C# (CSharp) Method

SetRedirectURL() public method

Set the redirect URL
if any argument is null/empty string
public SetRedirectURL ( string redirectURL ) : OAuthFlowBuilder
redirectURL string the redirect Url
return OAuthFlowBuilder
        public virtual OAuthFlowBuilder SetRedirectURL(string redirectURL)
        {
            Util.ThrowIfNull(redirectURL);

            this.redirectURL = redirectURL;
            return this;
        }