Aracılığıyla paylaş


FlowDecision.True Özellik

Tanım

Koşul olarak değerlendirildiğinde trueyürütülen öğesini alır veya ayarlarFlowNode.

public:
 property System::Activities::Statements::FlowNode ^ True { System::Activities::Statements::FlowNode ^ get(); void set(System::Activities::Statements::FlowNode ^ value); };
[System.Windows.Markup.DependsOn("Condition")]
public System.Activities.Statements.FlowNode True { get; set; }
[<System.Windows.Markup.DependsOn("Condition")>]
member this.True : System.Activities.Statements.FlowNode with get, set
Public Property True As FlowNode

Özellik Değeri

Koşul olarak değerlendirildiğinde trueyürütülecek etkinlik.

Öznitelikler

Örnekler

Aşağıdaki kod örneği bir FlowDecision düğümün True özelliğini ayarlamayı gösterir. Bu örnek, TryCatch Kullanarak Akış Çizelgesi Etkinliğindeki Hata İşleme örneğinden alınıyor.

FlowDecision flowDecision = new FlowDecision
{
    Condition = ExpressionServices.Convert<bool>((ctx) => discount.Get(ctx) > 0),
    True = discountApplied,
    False = discountNotApplied
};

Şunlara uygulanır