Class UntrustedCredentials
Credentials for external authentication.
Carrier object for UntrustedCredentials. Services for the UntrustedCredentials Carrier is available from the IUserAgent.Namespace: SuperOffice.CRM.Services
Assembly: SuperOffice.Services.dll
Syntax
public class UntrustedCredentials : Carrier
Constructors
UntrustedCredentials()
Default constructor
Declaration
public UntrustedCredentials()
See Also
Properties
Comment
Description of credentials. Max 255 characters.
Declaration
public virtual string Comment { get; set; }
Property Value
Type | Description |
---|---|
String |
See Also
IsActive
Is this credentials currently active.
Declaration
public virtual bool IsActive { get; set; }
Property Value
Type | Description |
---|---|
Boolean |
See Also
PublicValue
Data stored unencrypted in the db. Typically server and or username. Max 238 characters.
Declaration
public virtual string PublicValue { get; set; }
Property Value
Type | Description |
---|---|
String |
See Also
SecretValue
Data stored encrypted in the db. Typically a password. Max 70 characters.
Declaration
public virtual string SecretValue { get; set; }
Property Value
Type | Description |
---|---|
String |
See Also
ValidFrom
Credentials are valid from this date.
Declaration
public virtual DateTime ValidFrom { get; set; }
Property Value
Type | Description |
---|---|
DateTime |
See Also
ValidTo
Credentials are valid to this date.
Declaration
public virtual DateTime ValidTo { get; set; }
Property Value
Type | Description |
---|---|
DateTime |
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. |