Class CredentialsType

Type code indicated by the type of the credentials.

Inheritance
System.Object
AdvancedEnum<CredentialsType>
CodeEnum<CredentialsType, System.Byte>
ByteCodeEnum<CredentialsType>
CredentialsType
Inherited Members
CodeEnum<CredentialsType, Byte>.Code
CodeEnum<CredentialsType, Byte>.Enum
CodeEnum<CredentialsType, Byte>.FromCode(Byte)
AdvancedEnum<CredentialsType>.INTERNAL_ENUM
AdvancedEnum<CredentialsType>.Name
AdvancedEnum<CredentialsType>.ValueOf(String)
AdvancedEnum<CredentialsType>.Values()
AdvancedEnum<CredentialsType>.ToString()
Namespace: PushTechnology.DiffusionCore.Client.Types
Assembly: Diffusion.Client.dll
Syntax
public class CredentialsType : ByteCodeEnum<CredentialsType>

Fields

CUSTOM

Application-specific credentials.

Declaration
public static readonly CredentialsType CUSTOM
Field Value
Type Description
CredentialsType

The credentials type for application-specific credentials.

NONE

No credentials are supplied. This is used for anonymous session creation. It may also be supported by authentication handlers that allow identity to be changed without further credentials.

Declaration
public static readonly CredentialsType NONE
Field Value
Type Description
CredentialsType

The credentials type when no credentials are supplied.

PLAIN_PASSWORD

A plaintext password, encoded with UTF-8.

Declaration
public static readonly CredentialsType PLAIN_PASSWORD
Field Value
Type Description
CredentialsType

The credentials type for plaintext password.

Back to top