Sdílet prostřednictvím


ReceiveParametersContent Konstruktory

Definice

Vytvoří novou instanci třídy ReceiveParametersContent.

Přetížení

ReceiveParametersContent()

Vytvoří novou instanci třídy ReceiveParametersContent.

ReceiveParametersContent(IDictionary<String,OutArgument>)

Inicializuje novou instanci ReceiveParametersContent třídy se zadanými parametry.

ReceiveParametersContent()

Vytvoří novou instanci třídy ReceiveParametersContent.

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

Platí pro

ReceiveParametersContent(IDictionary<String,OutArgument>)

Inicializuje novou instanci ReceiveParametersContent třídy se zadanými parametry.

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

Parametry

parameters
IDictionary<String,OutArgument>

Kolekce párů klíč-hodnota s klíči obsahující názvy parametrů a hodnoty obsahující argumenty.

Příklady

Následující příklad ukazuje, jak použít tento konstruktor.

Receive prescriptionRequest = new Receive
{
    DisplayName = "Request Perscription",
    OperationName = "GetBaseCost",
    ServiceContractName = Constants.PharmacyServiceContractName,
    CanCreateInstance = true,
    //CorrelatesWith = customerHandle,  -- add this line for explicit correlation
    CorrelatesOn = customerQuerySet,
    Content = new ReceiveParametersContent
    {
        Parameters = 
        {
            {"Customer",new OutArgument<Customer>(customer)},
            {"Drug",new OutArgument<string>(drug)},
        }
    }
};

Platí pro