DependencyObject.GetInvocationList<T>(DependencyProperty) 方法

定义

获取一个数组,该数组包含指定 DependencyProperty的委托。

protected:
generic <typename T>
 cli::array <T> ^ GetInvocationList(System::Workflow::ComponentModel::DependencyProperty ^ dependencyEvent);
protected T[] GetInvocationList<T>(System.Workflow.ComponentModel.DependencyProperty dependencyEvent);
member this.GetInvocationList : System.Workflow.ComponentModel.DependencyProperty -> 'T[]
Protected Function GetInvocationList(Of T) (dependencyEvent As DependencyProperty) As T()

类型参数

T

返回的委托的类型。

参数

dependencyEvent
DependencyProperty

指定的 DependencyProperty

返回

T[]

包含指定 DependencyProperty委托的数组。

例外

dependencyEvent是空引用(Visual Basic 中的 Nothing)。

dependencyEvent 与事件不对应。

适用于