XamlMember.LookupUnderlyingGetter Method

Definition

Returns a get accessor that is associated with this XamlMember.

protected:
 virtual System::Reflection::MethodInfo ^ LookupUnderlyingGetter();
protected virtual System.Reflection.MethodInfo LookupUnderlyingGetter ();
abstract member LookupUnderlyingGetter : unit -> System.Reflection.MethodInfo
override this.LookupUnderlyingGetter : unit -> System.Reflection.MethodInfo
Protected Overridable Function LookupUnderlyingGetter () As MethodInfo

Returns

The MethodInfo for the associated get accessor; or null.

Remarks

The default implementation interprets the UnderlyingMember property as PropertyInfo and returns the value of PropertyInfo.GetGetMethod (with the parameter set to true), which means that the returned method can be nonpublic. This behavior can result in null for certain cases. including cases where no associated accessor exists or the member is not a property.

This method is invoked when a caller gets a value from the UnderlyingGetter property on an associated XamlMemberInvoker. Override this method if you want to report uniform results for an entire XamlMember derived class, or if you have specialized metadata available to determine this on a per-case basis. Make sure to implement LookupUnderlyingGetter, LookupUnderlyingSetter, and LookupUnderlyingMember so that they all return correlated results.

Applies to