DocumentBuilderFactory.Validating Property

Definition

Indicates whether or not the factory is configured to produce parsers which validate the XML content during parse. -or- Specifies that the parser produced by this code will validate documents as they are parsed.

public virtual bool Validating { [Android.Runtime.Register("isValidating", "()Z", "GetIsValidatingHandler")] get; [Android.Runtime.Register("setValidating", "(Z)V", "GetSetValidating_ZHandler")] set; }
[<get: Android.Runtime.Register("isValidating", "()Z", "GetIsValidatingHandler")>]
[<set: Android.Runtime.Register("setValidating", "(Z)V", "GetSetValidating_ZHandler")>]
member this.Validating : bool with get, set

Property Value

Boolean

true if the factory is configured to produce parsers which validate the XML content during parse; false otherwise.

Attributes

Remarks

Property getter documentation:

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

Property setter documentation:

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