BindingContext.GetInnerProperty<T> メソッド

定義

バインド スタックの適切な層から、要求のあった型指定されたオブジェクト (ある場合) を返します。

public:
generic <typename T>
 where T : class T GetInnerProperty();
public T GetInnerProperty<T> () where T : class;
member this.GetInnerProperty : unit -> 'T (requires 'T : null)
Public Function GetInnerProperty(Of T As Class) () As T

型パラメーター

T

メソッドが照会している、型指定されたオブジェクト。

戻り値

T

要求される型指定されたオブジェクト T がある場合は、そのオブジェクト。ない場合は null

CustomBinding binding = new CustomBinding();
BindingParameterCollection bpCol = new BindingParameterCollection();
BindingContext context = new BindingContext(binding, bpCol);
XmlDictionaryReaderQuotas quotas = context.GetInnerProperty<XmlDictionaryReaderQuotas>();
Dim binding As New CustomBinding()
Dim bpCol As New BindingParameterCollection()
Dim context As New BindingContext(binding, bpCol)
Dim quotas As XmlDictionaryReaderQuotas = context.GetInnerProperty(Of XmlDictionaryReaderQuotas)()

注釈

バインディング コンテキストを複製し、バインディング コンテキストに格納されている次のバインディング要素で GetProperty<T>(BindingContext) を呼び出します。

適用対象