Class Credential
Credentials supported for authentication
Carrier object for Credential. Services for the Credential Carrier is available from the IUserAgent.Namespace: SuperOffice.CRM.Services
Assembly: SuperOffice.Services.dll
Syntax
public class Credential : Carrier
Constructors
Credential()
Default constructor
Declaration
public Credential()
See Also
Properties
DisplayValue
The value displayed to the user. this will typically be the users login name in active directory.
Declaration
public virtual string DisplayValue { get; set; }
Property Value
Type | Description |
---|---|
String |
See Also
Type
Description of credential type
Declaration
public virtual CredentialType Type { get; set; }
Property Value
Type | Description |
---|---|
CredentialType |
See Also
Value
This is the actuall value of the credentials. This will typically be the password or teh users SID in active directory
Declaration
public virtual string Value { get; set; }
Property Value
Type | Description |
---|---|
String |
See Also
Methods
ToString()
Returns the carrier contents as a formatted string.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
String | The carrier contents. |
See Also
ToString(String)
Returns the carrier contents as a formatted string, useful for debugging. Each line in the output is prefixed with the input value.
Declaration
public string ToString(string prefix)
Parameters
Type | Name | Description |
---|---|---|
String | prefix | The line prefix (typically used for indenting) |
Returns
Type | Description |
---|---|
String | The carrier contents. |