DependencyObject.GetInvocationList<T>(DependencyProperty) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取一个数组,该数组包含指定 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 与事件不对应。