Class ForeignKey
Carrier object for ForeignKey. Services for the ForeignKey Carrier is available from the ForeignSystem Agent.
Namespace: SuperOffice.CRM.Services
Assembly: SuperOffice.Services.dll
Syntax
[DataContract(Namespace = "http://www.superoffice.net/ws/crm/NetServer/11.7.0.0")]
public class ForeignKey : Carrier
Constructors
ForeignKey()
Default constructor
Declaration
public ForeignKey()
See Also
Properties
CreatedBy
Name of the person that created the foreign key
Declaration
[DataMember]
public virtual string CreatedBy { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
See Also
CreatedDate
Registered when in UTC.
Declaration
[DataMember]
public virtual DateTime CreatedDate { get; set; }
Property Value
| Type | Description |
|---|---|
| DateTime |
See Also
Key
Subkey (optional)
Declaration
[DataMember]
public virtual string Key { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
See Also
RecordId
Record in the referenced table
Declaration
[DataMember]
public virtual int RecordId { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
See Also
TableName
Table name, transformed to and from numeric table id by the service layer
Declaration
[DataMember]
public virtual string TableName { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
See Also
UpdatedBy
Name of the person that last updated the foreign key
Declaration
[DataMember]
public virtual string UpdatedBy { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
See Also
UpdatedDate
Last updated when in UTC.
Declaration
[DataMember]
public virtual DateTime UpdatedDate { get; set; }
Property Value
| Type | Description |
|---|---|
| DateTime |
See Also
Value
Key value
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. |