Class UntrustedCredentials
Credentials for external authentication.
Carrier object for UntrustedCredentials. Services for the UntrustedCredentials 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.6.0.0")]
public class UntrustedCredentials : Carrier
Constructors
UntrustedCredentials()
Default constructor
Declaration
public UntrustedCredentials()
See Also
Properties
Comment
Description of credentials. Max 255 characters.
Declaration
[DataMember]
public virtual string Comment { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
See Also
IsActive
Is this credentials currently active.
Declaration
[DataMember]
public virtual bool IsActive { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
See Also
PublicValue
Data stored unencrypted in the db. Typically server and or username. Max 238 characters.
Declaration
[DataMember]
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
[DataMember]
public virtual string SecretValue { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
See Also
ValidFrom
Credentials are valid from this date.
Declaration
[DataMember]
public virtual DateTime ValidFrom { get; set; }
Property Value
| Type | Description |
|---|---|
| DateTime |
See Also
ValidTo
Credentials are valid to this date.
Declaration
[DataMember]
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. |