XamlMemberInvoker.GetValue(Object) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
從執行個體取得相關屬性的值。
public:
virtual System::Object ^ GetValue(System::Object ^ instance);
public virtual object GetValue (object instance);
abstract member GetValue : obj -> obj
override this.GetValue : obj -> obj
Public Overridable Function GetValue (instance As Object) As Object
參數
- instance
- Object
成員的擁有者型別執行個體。
傳回
要求的屬性值。
例外狀況
instance
為 null
。
給繼承者的注意事項
基底實作包含對內部協助程式 ThrowIfUnknown 的
呼叫。 這個協助程式一律會針對 以未知 為基礎的案例 XamlMemberInvoker 擲回 ,其中包含 的 為 null
的案例 UnderlyingMember XamlMember 。 XamlMember
如果 UnderlyingGetter 為 null
,則基底實作會擲回 。
對於靜態屬性, (是依據) 傳遞 null
作為第一個參數,並在第二個參數中封裝 instance
的預設實作呼叫 Invoke(Object, Object[]) UnderlyingGetter 。 UnderlyingGetter true
IsStatic 如果是非靜態屬性,它會呼叫 Invoke(Object, Object[]) 並轉送 instance
做為第一個參數,並將空的封裝作為第二個參數。