XamlMember.LookupUnderlyingMember Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns a CLR type system MemberInfo that is associated with this XamlMember.
protected:
virtual System::Reflection::MemberInfo ^ LookupUnderlyingMember();
protected virtual System.Reflection.MemberInfo LookupUnderlyingMember ();
abstract member LookupUnderlyingMember : unit -> System.Reflection.MemberInfo
override this.LookupUnderlyingMember : unit -> System.Reflection.MemberInfo
Protected Overridable Function LookupUnderlyingMember () As MemberInfo
Returns
A CLR type system MemberInfo object that is associated with this XamlMember; or null
.
Remarks
The default implementation returns the underlying member information, which is based on construction. If the MemberInfo object is constructed with a signature that does not provide enough information to set the underlying member, this method returns null
.
If an underlying member was set during construction, you should not need to call this method.
This method is invoked when a caller gets a value from UnderlyingMember. 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.