Class ForeignKey
Carrier object for ForeignKey. Services for the ForeignKey Carrier is available from the IForeignSystemAgent.
Namespace: SuperOffice.CRM.Services
Assembly: SuperOffice.Services.dll
Syntax
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
public virtual string CreatedBy { get; set; }
Property Value
Type | Description |
---|---|
String |
See Also
CreatedDate
Registered when in UTC.
Declaration
public virtual DateTime CreatedDate { get; set; }
Property Value
Type | Description |
---|---|
DateTime |
See Also
Key
Subkey (optional)
Declaration
public virtual string Key { get; set; }
Property Value
Type | Description |
---|---|
String |
See Also
RecordId
Record in the referenced table
Declaration
public virtual int RecordId { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
See Also
TableName
Table name, transformed to and from numeric table id by the service layer
Declaration
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
public virtual string UpdatedBy { get; set; }
Property Value
Type | Description |
---|---|
String |
See Also
UpdatedDate
Last updated when in UTC.
Declaration
public virtual DateTime UpdatedDate { get; set; }
Property Value
Type | Description |
---|---|
DateTime |
See Also
Value
Key value
Declaration
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. |