[This is preliminary documentation and is subject to change.]

Specifies a method called before a create operation.

Namespace:  CWR.MSCRM.Mobile.Client.BL
Assembly:  CWR.MSCRM.Mobile.Client.Sdk (in CWR.MSCRM.Mobile.Client.Sdk.dll)
Version: 4.0.0.7

Syntax

C#
public virtual PreCalloutReturnValue PreCreate(
	CalloutEntityContext entityContext,
	DynamicEntity entity,
	ref string errorMessage
)
Visual Basic (Declaration)
Public Overridable Function PreCreate ( _
	entityContext As CalloutEntityContext, _
	entity As DynamicEntity, _
	ByRef errorMessage As String _
) As PreCalloutReturnValue

Parameters

entityContext
Type: CWR.MSCRM.Mobile.Client.BL..::.CalloutEntityContext
Contains information about the entity on which the create operation was performed.
entity
Type: DynamicEntity
Dictionary containing the properties of the entity to be created. This dictionary may be modified during the execution of this method.
errorMessage
Type: System..::.String %
A string that contains the error message to be returned to the application.

Return Value

[Missing <returns> documentation for M:CWR.MSCRM.Mobile.Client.BL.CalloutBase.PreCreate(CWR.MSCRM.Mobile.Client.BL.CalloutEntityContext,CWR.MSCRM.WebServices.CrmServiceAPI.DynamicEntity,System.String@)]

See Also