XamlType.LookupTrimSurroundingWhitespace Method

Definition

Returns a value that indicates whether this XamlType should be serialized using a mode that trims surrounding whitespace.

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

Returns

true if this XamlType should be serialized in a mode that trims surrounding whitespace; otherwise, false.

Remarks

This method can be invoked by calls to TrimSurroundingWhitespace.

The default implementation returns a value based on reading TrimSurroundingWhitespaceAttribute. It can also check BaseType for the attribute if no attribute is found on the immediate underlying type. If a value is unavailable, it returns false.

Applies to