XamlMember.LookupIsReadPublic Method

Definition

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

C#
protected virtual bool LookupIsReadPublic();

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.

Dôležité

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

Produkt Verzie
.NET Framework 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10

See also