Class Credential
Credentials supported for authentication
Carrier object for Credential. Services for the Credential Carrier is available from the User Agent.Namespace: SuperOffice.CRM.Services
Assembly: SuperOffice.Services.dll
Syntax
[DataContract(Namespace = "http://www.superoffice.net/ws/crm/NetServer/11.1.0.0")]
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
[DataMember]
public virtual string DisplayValue { get; set; }
Property Value
Type | Description |
---|---|
string |
See Also
Type
Description of credential type
Declaration
[DataMember]
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
[DataMember]
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. |