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

SetClientId() public méthode

Set the client ID
if any argument is null/empty string
public SetClientId ( string clientId ) : OAuthFlowBuilder
clientId string the Value To set
Résultat OAuthFlowBuilder
        public virtual OAuthFlowBuilder SetClientId(string clientId)
        {
            Util.ThrowIfNull(clientId);

            this.clientId = clientId;
            return this;
        }