WebMessageEncodingBindingElement.GetProperty<T>(BindingContext) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
如果存在,从通道堆栈的适当层返回所请求类型的对象,如果不存在,则为 null
。
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
方法正在查询的类型化对象。
参数
- context
- BindingContext
当前绑定元素的 BindingContext。
返回
- T
如果存在,则为所请求的类型化对象 T
,如果不存在,则为 null
。
例外
context
设置为 null
。
注解
此次重写向基 GetProperty<T>(BindingContext) 实现中添加了一个属性:如果 T
为 XmlDictionaryReaderQuotas,则返回 ReaderQuotas 属性。