ReliableSessionBindingElement.GetProperty<T>(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 类型通道时所需的信息。

返回

T

类型为 T 且具有指定 context 的属性,如果找不到类型为 null 的属性,则为 T

适用于