SymmetricSecurityBindingElement.GetProperty<T>(BindingContext) 方法

定义

BindingContext 中获取指定的对象。

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

BindingContextT 类型的指定对象,或 null (如果找不到该对象)。

注解

此方法从基类或该类的一个上级中获取指定对象。 返回的对象通常是一个属性集合,例如实现 ISecurityCapabilities 的对象。

适用于