XamlMember.LookupIsReadPublic Method

Definition

Returns whether this XamlMember represents a property that has a public get accessor.

protected:
 virtual bool LookupIsReadPublic();
protected virtual bool LookupIsReadPublic ();
abstract member LookupIsReadPublic : unit -> bool
override this.LookupIsReadPublic : unit -> bool
Protected Overridable Function LookupIsReadPublic () As Boolean

Returns

true if this XamlMember represents a property that has a public get accessor; otherwise, false.

Remarks

The default implementation returns results based either on internal reflection or the negation of IsWriteOnly, processing in that order.

LookupIsReadPublic returns whether the member itself is public; it returns true for a public member on a nonpublic declaring type. Use IsReadPublic instead, if you also want to consider the visibility of the declaring type.

This method is invoked when a caller gets a value from IsReadPublic. 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.

Important

The LookupIsReadPublic method is virtual and therefore, can be overridden. The override has the potential to change (maliciously or otherwise) the reported access information of a XAML member so that it no longer aligns in an expected way with the type system access information of its underlying CLR declaration. For any security-critical checks of access levels, use the underlying CLR type instead.

Applies to

See also