Table of Contents

Class SuCredentials

Namespace
SunamoData.Data
Assembly
SunamoData.dll

Represents authentication credentials with either login/password or token.

public class SuCredentials
Inheritance
SuCredentials
Inherited Members
Extension Methods

Constructors

SuCredentials()

Initializes a new instance of the SuCredentials class.

public SuCredentials()

SuCredentials(string)

Initializes a new instance of the SuCredentials class with a token.

public SuCredentials(string token)

Parameters

token string

The authentication token.

SuCredentials(string, string)

Initializes a new instance of the SuCredentials class with login and password.

public SuCredentials(string login, string password)

Parameters

login string

The login username.

password string

The password.

Properties

Login

Gets or sets the login username.

public string Login { get; set; }

Property Value

string

Password

Gets or sets the password.

public string Password { get; set; }

Property Value

string

Token

Gets or sets the authentication token.

public string Token { get; set; }

Property Value

string