CallSiteOps.GetRules<T>(CallSite<T>) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
注意
do not use this method
从调用站点获取动态绑定规则。
此 API 支持产品基础结构,不能在代码中直接使用。
public:
generic <typename T>
where T : class static cli::array <T> ^ GetRules(System::Runtime::CompilerServices::CallSite<T> ^ site);
[System.Obsolete("do not use this method", true)]
public static T[] GetRules<T> (System.Runtime.CompilerServices.CallSite<T> site) where T : class;
[<System.Obsolete("do not use this method", true)>]
static member GetRules : System.Runtime.CompilerServices.CallSite<'T (requires 'T : null)> -> 'T[] (requires 'T : null)
Public Shared Function GetRules(Of T As Class) (site As CallSite(Of T)) As T()
类型参数
- T
CallSite 的委托的类型。
参数
- site
- CallSite<T>
动态调用站点的实例。
返回
T[]
动态绑定规则的数组。
- 属性