SendParametersContent Constructors

Definition

Initializes a new instance of the SendParametersContent class.

Overloads

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.

SendParametersContent()

Initializes a new instance of the SendParametersContent class.

public:
 SendParametersContent();
public SendParametersContent ();
Public Sub New ()

Applies to

SendParametersContent(IDictionary<String,InArgument>)

Initializes a new instance of the SendParametersContent class with the specified parameters.

public:
 SendParametersContent(System::Collections::Generic::IDictionary<System::String ^, System::Activities::InArgument ^> ^ parameters);
public SendParametersContent (System.Collections.Generic.IDictionary<string,System.Activities.InArgument> parameters);
new System.ServiceModel.Activities.SendParametersContent : System.Collections.Generic.IDictionary<string, System.Activities.InArgument> -> System.ServiceModel.Activities.SendParametersContent
Public Sub New (parameters As IDictionary(Of String, InArgument))

Parameters

parameters
IDictionary<String,InArgument>

A collection of key-value pairs with the keys containing the parameter names and the values containing the arguments.

Examples

The following example shows how to use this SendParametersContent constructor.

new SendReply
{                           
    Request = receiveString,                            
    Content = new SendParametersContent
    {
        Parameters =
        {
            { "echo", new InArgument<string>(echo) }
        },
    }
},

Applies to