XamlMember.IsReadPublic Property
Gets a value that indicates whether this XamlMember represents a member with a callable public get accessor.
Assembly: System.Xaml (in System.Xaml.dll)
Property Value
Type: System.Booleantrue if this XamlMember represents a callable public get accessor; otherwise, false.
The IsReadPublic value checks whether the DeclaringType is public. If DeclaringType is nonpublic, the get accessor is not callable in a practical way, and IsReadPublic returns false.
Calling IsReadPublic invokes LookupIsReadPublic or a specific override of that method.
Security Note |
|---|
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. |
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Security Note