Class TemporaryKeyInfo
The fields returned when checking a temporary key
Carrier object for TemporaryKeyInfo. Services for the TemporaryKeyInfo Carrier is available from the Person 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 TemporaryKeyInfo : Carrier
Constructors
TemporaryKeyInfo()
Default constructor
Declaration
public TemporaryKeyInfo()
See Also
Properties
Domain
The domain for this key. Unknown if key is not valid.
Declaration
[DataMember]
public virtual TemporaryKeyDomain Domain { get; set; }
Property Value
Type | Description |
---|---|
TemporaryKeyDomain |
See Also
IsExpired
Whether the key is expired or not.
Declaration
[DataMember]
public virtual bool IsExpired { get; set; }
Property Value
Type | Description |
---|---|
bool |
See Also
Payload
The payload for this key. May be null or empty.
Declaration
[DataMember]
public virtual string Payload { get; set; }
Property Value
Type | Description |
---|---|
string |
See Also
PersonId
The person id this key is related to. May be null.
Declaration
[DataMember]
public virtual int PersonId { get; set; }
Property Value
Type | Description |
---|---|
int |
See Also
TargetId
The primary key of the entity this temporary key is for, dependent of dmain
Declaration
[DataMember]
public virtual int TargetId { get; set; }
Property Value
Type | Description |
---|---|
int |
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. |