DocumentBuilderFactory.Coalescing Property

Definition

Indicates whether or not the factory is configured to produce parsers which converts CDATA nodes to Text nodes and appends it to the adjacent (if any) Text node. -or- Specifies that the parser produced by this code will convert CDATA nodes to Text nodes and append it to the adjacent (if any) text node.

public virtual bool Coalescing { [Android.Runtime.Register("isCoalescing", "()Z", "GetIsCoalescingHandler")] get; [Android.Runtime.Register("setCoalescing", "(Z)V", "GetSetCoalescing_ZHandler")] set; }
[<get: Android.Runtime.Register("isCoalescing", "()Z", "GetIsCoalescingHandler")>]
[<set: Android.Runtime.Register("setCoalescing", "(Z)V", "GetSetCoalescing_ZHandler")>]
member this.Coalescing : bool with get, set

Property Value

Boolean

true if the factory is configured to produce parsers which converts CDATA nodes to Text nodes and appends it to the adjacent (if any) Text node; false otherwise.

Attributes

Remarks

Property getter documentation:

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

Property setter documentation:

Java documentation for javax.xml.parsers.DocumentBuilderFactory.setCoalescing(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