While Konstruktoren
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Erstellt eine neue Instanz der While Aktivität.
Überlädt
| Name | Beschreibung |
|---|---|
| While() |
Erstellt eine neue Instanz der While Aktivität. |
| While(Activity<Boolean>) |
Erstellt eine neue Instanz der While Aktivität. |
| While(Expression<Func<ActivityContext,Boolean>>) |
Erstellt eine neue Instanz der While Aktivität. |
Beispiele
Im folgenden Codebeispiel wird das Erstellen einer While Aktivität veranschaulicht.
new While
{
Condition = true,
Body = new Receive
{
ServiceContractName = Constants.POContractName,
OperationName = Constants.UpdatePOName,
CorrelatesWith = poidHandle, // identifies that the UpdatePO operation is waiting on the PurchaseOrderId that was used to initialize this handle
CorrelatesOn = new MessageQuerySet // the query that is used on an incoming message to find the requisite PurchaseOrderId specified in the correlation
{
// Id is the name of the incoming parameter within the PurchaseOrder
{ "PoId", new XPathMessageQuery("sm:body()/defns:PurchaseOrder/defns:Id", Constants.XPathMessageContext) }
},
Content = ReceiveContent.Create(new OutArgument<PurchaseOrder>(po)) // creates a ReceiveMessageContent
}
},
While()
Erstellt eine neue Instanz der While Aktivität.
public:
While();
public While();
Public Sub New ()
Beispiele
Im folgenden Codebeispiel wird das Erstellen einer While Aktivität veranschaulicht.
new While
{
Condition = true,
Body = new Receive
{
ServiceContractName = Constants.POContractName,
OperationName = Constants.UpdatePOName,
CorrelatesWith = poidHandle, // identifies that the UpdatePO operation is waiting on the PurchaseOrderId that was used to initialize this handle
CorrelatesOn = new MessageQuerySet // the query that is used on an incoming message to find the requisite PurchaseOrderId specified in the correlation
{
// Id is the name of the incoming parameter within the PurchaseOrder
{ "PoId", new XPathMessageQuery("sm:body()/defns:PurchaseOrder/defns:Id", Constants.XPathMessageContext) }
},
Content = ReceiveContent.Create(new OutArgument<PurchaseOrder>(po)) // creates a ReceiveMessageContent
}
},
Gilt für:
While(Activity<Boolean>)
Erstellt eine neue Instanz der While Aktivität.
public:
While(System::Activities::Activity<bool> ^ condition);
public While(System.Activities.Activity<bool> condition);
new System.Activities.Statements.While : System.Activities.Activity<bool> -> System.Activities.Statements.While
Public Sub New (condition As Activity(Of Boolean))
Parameter
Gilt für:
While(Expression<Func<ActivityContext,Boolean>>)
Erstellt eine neue Instanz der While Aktivität.
public:
While(System::Linq::Expressions::Expression<Func<System::Activities::ActivityContext ^, bool> ^> ^ condition);
public While(System.Linq.Expressions.Expression<Func<System.Activities.ActivityContext,bool>> condition);
new System.Activities.Statements.While : System.Linq.Expressions.Expression<Func<System.Activities.ActivityContext, bool>> -> System.Activities.Statements.While
Public Sub New (condition As Expression(Of Func(Of ActivityContext, Boolean)))
Parameter
- condition
- Expression<Func<ActivityContext,Boolean>>
Die Bedingung, unter der die Aktivität kursiert.