Gets or sets the array of key-value pairs.
Namespace: dk.webCRM.ApiSync.BusinessLayer.EntitiesAssembly: dk.webCRM.ApiSync.BusinessLayer (in dk.webCRM.ApiSync.BusinessLayer.dll) Version: 2.0.0.5 (2.0.0.5)
Syntaxpublic KeyValuePair[] Pairs { get; set; }
Public Property Pairs As KeyValuePair()
Get
Set
public:
property array<KeyValuePair^>^ Pairs {
array<KeyValuePair^>^ get ();
void set (array<KeyValuePair^>^ value);
}
member Pairs : KeyValuePair[] with 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
ExamplesWebCrmData 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