SendContent Class
An abstract base class for classes that represent the data sent to a workflow service.
Assembly: System.ServiceModel.Activities (in System.ServiceModel.Activities.dll)
System.ServiceModel.Activities::SendContent
System.ServiceModel.Activities::SendMessageContent
System.ServiceModel.Activities::SendParametersContent
| Name | Description | |
|---|---|---|
![]() ![]() | Create(IDictionary<String^, InArgument^>^) | Creates a new SendParametersContent instance with the specified parameters. |
![]() ![]() | Create(InArgument^) | Creates a new SendMessageContent instance with the specified message. |
![]() ![]() | Create(InArgument^, Type^) | Creates a new SendMessageContent instance with the specified message and message type. |
![]() | Equals(Object^) | Determines whether the specified object is equal to the current object.(Inherited from Object.) |
![]() | Finalize() | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.(Inherited from Object.) |
![]() | GetHashCode() | Serves as the default hash function. (Inherited from Object.) |
![]() | GetType() | |
![]() | MemberwiseClone() | |
![]() | ToString() | Returns a string that represents the current object.(Inherited from Object.) |
The following example shows how to use the SendContent class to specify the SendMessageContent for a Send activity.
new Send { Endpoint = clientEndpoint, ServiceContractName = Constants.POContractName, OperationName = Constants.UpdatePOName, Content = SendContent.Create(new InArgument<PurchaseOrder>(po)) },
Available since 4.0
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.


