Skip to main content

Class ServiceAuth

Namespace: SuperOffice.WebApi.Data
Assembly: SuperOffice.WebApi.dll
Carrier object for ServiceAuth. Properties for service authentication

Inheritance

objectCarrierServiceAuth

Inherited Members

Carrier.TableRight, Carrier.FieldProperties, object.ToString(), object.Equals(object), object.Equals(object, object), object.ReferenceEquals(object, object), object.GetHashCode(), object.GetType(), object.MemberwiseClone()

Examples

Get ServiceAuth 123 using the WebApi client:
var configuration = new WebApiConfiguration(url);
var agent = new UserAgent(configuration);
var serviceAuth = agent.GetServiceAuth( 123 );

Constructors

ServiceAuth()

Default constructor - defaults any enum props to 0.

Properties

AuthType

The type of authentication, plain-text, OAuth…

Property Value

string

Password

The (decrypted) password or token

Property Value

string

Port

The server port

Property Value

int

Server

The mail server

Property Value

string

ServiceAuthId

The primary key

Property Value

int

Username

The username

Property Value

string

See Also

UserAgent