Activity.Implementation 属性

定义

获取或设置返回包含执行逻辑的 Activity 的委托。

protected:
 virtual property Func<System::Activities::Activity ^> ^ Implementation { Func<System::Activities::Activity ^> ^ get(); void set(Func<System::Activities::Activity ^> ^ value); };
[System.ComponentModel.Browsable(false)]
[System.Windows.Markup.Ambient]
[System.Windows.Markup.XamlDeferLoad(typeof(System.Activities.XamlIntegration.FuncDeferringLoader), typeof(System.Activities.Activity))]
protected virtual Func<System.Activities.Activity> Implementation { get; set; }
[<System.ComponentModel.Browsable(false)>]
[<System.Windows.Markup.Ambient>]
[<System.Windows.Markup.XamlDeferLoad(typeof(System.Activities.XamlIntegration.FuncDeferringLoader), typeof(System.Activities.Activity))>]
member this.Implementation : Func<System.Activities.Activity> with get, set
Protected Overridable Property Implementation As Func(Of Activity)

属性值

包含执行逻辑的委托。

属性

注解

通过将多个 Activity 对象包含在 Sequence 活动或其他复合活动中,可以将执行逻辑作为多个 Activity 对象来实现。

适用于