XamlMember.LookupUnderlyingSetter 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 set
accessor that is associated with this XamlMember.
protected:
virtual System::Reflection::MethodInfo ^ LookupUnderlyingSetter();
protected virtual System.Reflection.MethodInfo LookupUnderlyingSetter ();
abstract member LookupUnderlyingSetter : unit -> System.Reflection.MethodInfo
override this.LookupUnderlyingSetter : unit -> System.Reflection.MethodInfo
Protected Overridable Function LookupUnderlyingSetter () As MethodInfo
Returns
The MethodInfo for the associated set
accessor; or null
.
Remarks
The default implementation interprets UnderlyingMember as PropertyInfo and returns the value of PropertyInfo.GetSetMethod (with the parameter set to true
), which means that the returned method can be nonpublic. This can result in null
for certain cases, including cases where there is no such accessor, or the member is not a property.
This method is invoked when a caller gets a value from UnderlyingSetter 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.