Udostępnij za pośrednictwem


ReceiveParametersContent Konstruktory

Definicja

Tworzy nowe wystąpienie klasy ReceiveParametersContent.

Przeciążenia

ReceiveParametersContent()

Tworzy nowe wystąpienie klasy ReceiveParametersContent.

ReceiveParametersContent(IDictionary<String,OutArgument>)

Inicjuje ReceiveParametersContent nowe wystąpienie klasy z określonymi parametrami.

ReceiveParametersContent()

Tworzy nowe wystąpienie klasy ReceiveParametersContent.

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

Dotyczy

ReceiveParametersContent(IDictionary<String,OutArgument>)

Inicjuje ReceiveParametersContent nowe wystąpienie klasy z określonymi parametrami.

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>

Kolekcja par klucz-wartość z kluczami zawierającymi nazwy parametrów i wartości zawierające argumenty.

Przykłady

W poniższym przykładzie pokazano, jak używać tego konstruktora.

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)},
        }
    }
};

Dotyczy