TransportBindingElement.GetProperty<T>(BindingContext) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
從指定的 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
傳回
T
來自指定之 BindingContext 的屬性。
備註
這個方法會接收繫結內容當做輸入參數,該參數表示繫結項目的堆疊。 這個方法會直接取得指定的物件、將查詢委派給堆疊中下一個較低層的繫結項目,或是結合這兩者。 如果它委派查詢,它就可以修改內容。 堆疊中的每一個繫結項目都可以重複此程序 (如果已獲得委派),一直到堆疊的底部。 傳回的物件通常是屬性的集合。
如果 T
的型別為 ChannelProtectionRequirements、XmlDictionaryReaderQuotas 或 MessageVersion,則會傳回此類別的執行個體。 如果 T
的型別符合 BindingParameters 中執行個體的型別,則會傳回該執行個體。
這個方法會由繫結項目以及執行階段物件 (如 IChannelFactory、IChannelListener 和 IChannel) 所實作。