DocumentBuilderFactory.Coalescing Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
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:
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.
Java documentation for javax.xml.parsers.DocumentBuilderFactory.isCoalescing()
.
Property setter documentation:
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. By default the value of this is set to false
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.