Class UpsertRowStatus
Information about a row of the results of a mass-update operation
Carrier object for UpsertRowStatus. Services for the UpsertRowStatus Carrier is available from the DatabaseTable 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 UpsertRowStatus : Carrier
Constructors
UpsertRowStatus()
Default constructor
Declaration
public UpsertRowStatus()
See Also
Properties
Action
Actiona taken for row
Declaration
[DataMember]
public virtual UpsertRowActionStatus Action { get; set; }
Property Value
Type | Description |
---|---|
UpsertRowActionStatus |
See Also
PrimaryKey
The primary key of the target table, that matches the keys specified in the data row
Declaration
[DataMember]
public virtual int PrimaryKey { get; set; }
Property Value
Type | Description |
---|---|
int |
See Also
RowKeys
The key values given in the incoming 'data' parameter to the Upsert call, in the order they were speicifed in the 'keys' array
Declaration
[DataMember]
public virtual string[] RowKeys { 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. |