XamlMember.IsWritePublic Property

Definition

Gets a value that indicates whether this XamlMember represents a member that has a callable public set accessor.

public:
 property bool IsWritePublic { bool get(); };
public bool IsWritePublic { get; }
member this.IsWritePublic : bool
Public ReadOnly Property IsWritePublic As Boolean

Property Value

true if this XamlMember represents a callable public set accessor; otherwise, false.

Remarks

The IsWritePublic value considers whether the DeclaringType is public as part of the determination. If DeclaringType is nonpublic, the set accessor is not callable in a practical way, and IsWritePublic returns false.

Calling IsWritePublic invokes LookupIsWritePublic or a specific override of that method.

Important

The LookupIsWritePublic 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