TransactionFlowBindingElement.GetProperty<T>(BindingContext) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
从绑定堆栈的适当层获取所请求的类型化对象(如果存在)。
public:
generic <typename T>
where T : class override T GetProperty(System::ServiceModel::Channels::BindingContext ^ context);
public override T GetProperty<T> (System.ServiceModel.Channels.BindingContext context) where T : class;
override this.GetProperty : System.ServiceModel.Channels.BindingContext -> 'T (requires 'T : null)
Public Overrides Function GetProperty(Of T As Class) (context As BindingContext) As T
类型参数
- T
方法正在查询的类型化对象。
参数
返回
- T
如果存在,则为所请求的类型化对象 T
;如果不存在,则为 null
。
例外
context
为 null
。
注解
可使用此方法来检索来自绑定元素堆栈的功能、需求和参数。 如果绑定元素支持返回所请求的对象,则会返回对象。 如果不支持,就会将调用委托给堆栈中的下一个绑定元素。 如果到达堆栈底部仍然没有绑定元素支持所请求的对象,该方法将返回 null
。