SendParametersContent Class
Enables sending data to or from a workflow service in the form of parameters.
Assembly: System.ServiceModel.Activities (in System.ServiceModel.Activities.dll)
System.ServiceModel.Activities::SendContent
System.ServiceModel.Activities::SendParametersContent
| Name | Description | |
|---|---|---|
![]() | SendParametersContent() | Initializes a new instance of the SendParametersContent class. |
![]() | SendParametersContent(IDictionary<String^, InArgument^>^) | Initializes a new instance of the SendParametersContent class with the specified parameters. |
| Name | Description | |
|---|---|---|
![]() | Parameters | Gets or sets the workflow service operation parameters. |
| Name | Description | |
|---|---|---|
![]() | Equals(Object^) | Determines whether the specified object is equal to the current object.(Inherited from Object.) |
![]() | GetHashCode() | Serves as the default hash function. (Inherited from Object.) |
![]() | GetType() | |
![]() | ToString() | Returns a string that represents the current object.(Inherited from Object.) |
SendParametersContent is interoperable with regular WCF clients and services. The SendParametersContent collection is similar to the argument declaration on a C# method signature.The SendParametersContent collection cannot contain an argument that is a message contract or of type Message. Use SendMessageContent for these types of data.
The following example shows how to use the SendParametersContent class.
new SendReply { Request = receiveString, Content = new SendParametersContent { Parameters = { { "echo", new InArgument<string>(echo) } }, } },
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.

