CrmCalloutBase.PostDeliver Method

banner art

Specifies a method called after a deliver e-mail operation.

Syntax

[Visual Basic .NET]
Sub PostDeliver(
  ByVal userContext As CalloutUserContext,
  ByVal entityContext As CalloutEntityContext,
  ByVal postImageEntityXml As String
)

[C#]
void PostDeliver(
  CalloutUserContext  userContext,
  CalloutEntityContext  entityContext,
  string  postImageEntityXml
);

[JScript]
function PostDeliver(
  userContext : CalloutUserContext,
  entityContext : CalloutEntityContext,
  postImageEntityXml : String
);

Parameters

userContext

Contains information about the user who performed the deliver e-mail operation. See CalloutUserContext.

entityContext

Contains information about the e-mail entity on which the deliver operation was performed. See CalloutEntityContext.

postImageEntityXml

An XML string that describes the entity after the deliver e-mail operation was performed. This is a serialized version of DynamicEntity.

Return Value

No return value.

Example

Requirements

Namespace: Microsoft.Crm.Callout

Assembly: microsoft.crm.platform.callout.base.dll

See Also

© 2007 Microsoft Corporation. All rights reserved.