ILSParser Interface

Definition

An interface to an object that is able to build, or augment, a DOM tree from various input sources.

[Android.Runtime.Register("org/w3c/dom/ls/LSParser", "", "Org.W3c.Dom.LS.ILSParserInvoker")]
public interface ILSParser : Android.Runtime.IJavaObject, IDisposable, Java.Interop.IJavaPeerable
[<Android.Runtime.Register("org/w3c/dom/ls/LSParser", "", "Org.W3c.Dom.LS.ILSParserInvoker")>]
type ILSParser = interface
    interface IJavaObject
    interface IDisposable
    interface IJavaPeerable
Attributes
Implements

Remarks

Java documentation for org.w3c.dom.ls.LSParser.

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.

Fields

ActionAppendAsChildren

Append the result of the parse operation as children of the context node.

ActionInsertAfter

Insert the result of the parse operation as the immediately following sibling of the context node.

ActionInsertBefore

Insert the result of the parse operation as the immediately preceding sibling of the context node.

ActionReplace

Replace the context node with the result of the parse operation.

ActionReplaceChildren

Replace all the children of the context node with the result of the parse operation.

Properties

Async

true if the LSParser is asynchronous, false if it is synchronous.

Busy

true if the LSParser is currently busy loading a document, otherwise false.

DomConfig

The DOMConfiguration object used when parsing an input source.

Filter

When a filter is provided, the implementation will call out to the filter as it is constructing the DOM tree structure.

Handle

Gets the JNI value of the underlying Android object.

(Inherited from IJavaObject)
JniIdentityHashCode (Inherited from IJavaPeerable)
JniManagedPeerState (Inherited from IJavaPeerable)
JniPeerMembers (Inherited from IJavaPeerable)
PeerReference (Inherited from IJavaPeerable)

Methods

Abort()

Abort the loading of the document that is currently being loaded by the LSParser.

Disposed() (Inherited from IJavaPeerable)
DisposeUnlessReferenced() (Inherited from IJavaPeerable)
Finalized() (Inherited from IJavaPeerable)
Parse(ILSInput)

Parse an XML document from a resource identified by a LSInput.

ParseURI(String)

Parse an XML document from a location identified by a URI reference [IETF RFC 2396].

ParseWithContext(ILSInput, INode, Int16)

Parse an XML fragment from a resource identified by a LSInput and insert the content into an existing document at the position specified with the context and action arguments.

SetJniIdentityHashCode(Int32) (Inherited from IJavaPeerable)
SetJniManagedPeerState(JniManagedPeerStates) (Inherited from IJavaPeerable)
SetPeerReference(JniObjectReference) (Inherited from IJavaPeerable)
UnregisterFromRuntime() (Inherited from IJavaPeerable)

Extension Methods

JavaCast<TResult>(IJavaObject)

Performs an Android runtime-checked type conversion.

JavaCast<TResult>(IJavaObject)
GetJniTypeName(IJavaPeerable)
ParseAsync(ILSParser, ILSInput)
ParseURIAsync(ILSParser, String)
ParseWithContextAsync(ILSParser, ILSInput, INode, Int16)

Applies to