CompositeDuplexBindingElement.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
已測試過其支援的型別物件。
參數
- context
- BindingContext
BindingContext,其提供建置通道所需的內容。
傳回
T
要求的型別物件 T
(如果支援的話),如果不支援則為 null
。
例外狀況
context
為 null
。
備註
使用此方法可要求型別物件,例如,用來從堆疊繫結中的適當層次設定屬性或取得狀態的介面。 如果某個層次支援傳回要求的物件,它就會傳回物件。 如果不是,則會將呼叫向下委派到堆疊中的下一層。 如果到達堆疊的底部,而且沒有任何層次支援取得要求的物件,則會將 null
值傳回給呼叫者。