Click or drag to resize
WebCrmDataPairs Property
Gets or sets the array of key-value pairs.

Namespace: dk.webCRM.ApiSync.BusinessLayer.Entities
Assembly: dk.webCRM.ApiSync.BusinessLayer (in dk.webCRM.ApiSync.BusinessLayer.dll) Version: 2.0.0.5 (2.0.0.5)
Syntax
public KeyValuePair[] Pairs { get; set; }

Property Value

Type: KeyValuePair
Remarks
The key specifies webCRM field while the value represents its value in a string format. The key and value formats are defined and configured internally in webCRM. a_date
Examples
WebCrmData newRecord = new WebCrmData();
newRecord.Pairs = new KeyValuePair[]
{
    new KeyValuePair("activity_ID", "0"),
    new KeyValuePair("a_organisationID", "1"),
    new KeyValuePair("a_date", "20100101 10:44:10")
};
See Also