This topic has not yet been rated - Rate this topic

XamlMember.IsReadPublic Property

Gets a value that indicates whether this XamlMember represents a member with a callable public get accessor.

Namespace:  System.Xaml
Assembly:  System.Xaml (in System.Xaml.dll)
public bool IsReadPublic { get; }

Property Value

Type: System.Boolean
true 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 noteSecurity 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.

.NET Framework

Supported in: 4

.NET Framework Client Profile

Supported in: 4

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.
Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.