DocumentBuilderFactory.IgnoringElementContentWhitespace Property

Definition

Indicates whether or not the factory is configured to produce parsers which ignore ignorable whitespace in element content. -or- Specifies that the parsers created by this factory must eliminate whitespace in element content (sometimes known loosely as 'ignorable whitespace') when parsing XML documents (see XML Rec 2.

public virtual bool IgnoringElementContentWhitespace { [Android.Runtime.Register("isIgnoringElementContentWhitespace", "()Z", "GetIsIgnoringElementContentWhitespaceHandler")] get; [Android.Runtime.Register("setIgnoringElementContentWhitespace", "(Z)V", "GetSetIgnoringElementContentWhitespace_ZHandler")] set; }
[<get: Android.Runtime.Register("isIgnoringElementContentWhitespace", "()Z", "GetIsIgnoringElementContentWhitespaceHandler")>]
[<set: Android.Runtime.Register("setIgnoringElementContentWhitespace", "(Z)V", "GetSetIgnoringElementContentWhitespace_ZHandler")>]
member this.IgnoringElementContentWhitespace : bool with get, set

Property Value

Boolean

true if the factory is configured to produce parsers which ignore ignorable whitespace in element content; false otherwise.

Attributes

Remarks

Property getter documentation:

Java documentation for javax.xml.parsers.DocumentBuilderFactory.isIgnoringElementContentWhitespace().

Property setter documentation:

Java documentation for javax.xml.parsers.DocumentBuilderFactory.setIgnoringElementContentWhitespace(boolean).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to