Invokes asynchronous Salesforce.com save command to update an existing salesforce.com object

Namespace:  RedCritterSForceV1
Assembly:  RedCritterSForceV1 (in RedCritterSForceV1.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

      
 C#  Visual Basic 
public void updateObject(
	string requestID,
	API..::.SFObjectType objectType,
	string objectID,
	Collection<Setting> properties
)
Public Sub updateObject ( _
	requestID As String, _
	objectType As API..::.SFObjectType, _
	objectID As String, _
	properties As Collection(Of Setting) _
)

Parameters

requestID
String
A string ID for your App's use.
objectType
API..::.SFObjectType
Must be a standard SalesForce object i.e. "Contact", "Case", "Account"
objectID
String
The SalesForce.com ID of the object to be updated
properties
Collection<(Of <(Setting>)>)
The names and values of the properties to update

See Also