XamlMember.LookupIsReadOnly Method

Definition

Returns whether this XamlMember represents an intended read-only property.

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

Returns

true to report this XamlMember as an intended read-only property; otherwise, false.

Remarks

The default implementation returns true if UnderlyingMember exists, but a public set accessor does not exist for it, as determined by internal reflection.

This method is invoked when a caller gets a value from IsReadOnly. Override this method if you want to report uniform results for an entire XamlMember derived class, or if you have specialized metadata available that can be interpreted to determine XAML type system representations on a per-case basis.

Applies to

See also