ILSInput Interface
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.
This interface represents an input source for data.
[Android.Runtime.Register("org/w3c/dom/ls/LSInput", "", "Org.W3c.Dom.LS.ILSInputInvoker")]
public interface ILSInput : Android.Runtime.IJavaObject, IDisposable, Java.Interop.IJavaPeerable
[<Android.Runtime.Register("org/w3c/dom/ls/LSInput", "", "Org.W3c.Dom.LS.ILSInputInvoker")>]
type ILSInput = interface
interface IJavaObject
interface IDisposable
interface IJavaPeerable
- Attributes
- Implements
Remarks
This interface represents an input source for data.
This interface allows an application to encapsulate information about an input source in a single object, which may include a public identifier, a system identifier, a byte stream (possibly with a specified encoding), a base URI, and/or a character stream.
The exact definitions of a byte stream and a character stream are binding dependent.
The application is expected to provide objects that implement this interface whenever such objects are needed. The application can either provide its own objects that implement this interface, or it can use the generic factory method DOMImplementationLS.createLSInput()
to create objects that implement this interface.
The LSParser
will use the LSInput
object to determine how to read data. The LSParser
will look at the different inputs specified in the LSInput
in the following order to know which one to read from, the first one that is not null and not an empty string will be used: <ol> <li> LSInput.characterStream
</li> <li> LSInput.byteStream
</li> <li> LSInput.stringData
</li> <li> LSInput.systemId
</li> <li> LSInput.publicId
</li> </ol>
If all inputs are null, the LSParser
will report a DOMError
with its DOMError.type
set to "no-input-specified"
and its DOMError.severity
set to DOMError.SEVERITY_FATAL_ERROR
.
LSInput
objects belong to the application. The DOM implementation will never modify them (though it may make copies and modify the copies, if necessary).
See also the Document Object Model (DOM) Level 3 Load and Save Specification.
Java documentation for org.w3c.dom.ls.LSInput
.
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.
Properties
BaseURI |
The base URI to be used (see section 5.1.4 in []) for
resolving a relative |
ByteStream |
An attribute of a language and binding dependent type that represents a stream of bytes. |
CertifiedText |
If set to true, assume that the input is certified (see section 2.13 in []) when parsing []. |
CharacterStream |
An attribute of a language and binding dependent type that represents a stream of 16-bit units. |
Encoding |
The character encoding, if known. |
Handle |
Gets the JNI value of the underlying Android object. (Inherited from IJavaObject) |
JniIdentityHashCode |
Returns the value of |
JniManagedPeerState |
State of the managed peer. (Inherited from IJavaPeerable) |
JniPeerMembers |
Member access and invocation support. (Inherited from IJavaPeerable) |
PeerReference |
Returns a JniObjectReference of the wrapped Java object instance. (Inherited from IJavaPeerable) |
PublicId |
The public identifier for this input source. |
StringData |
String data to parse. |
SystemId |
The system identifier, a URI reference [], for this input source. |
Methods
Disposed() |
Called when the instance has been disposed. (Inherited from IJavaPeerable) |
DisposeUnlessReferenced() |
If there are no outstanding references to this instance, then
calls |
Finalized() |
Called when the instance has been finalized. (Inherited from IJavaPeerable) |
SetJniIdentityHashCode(Int32) |
Set the value returned by |
SetJniManagedPeerState(JniManagedPeerStates) | (Inherited from IJavaPeerable) |
SetPeerReference(JniObjectReference) |
Set the value returned by |
UnregisterFromRuntime() |
Unregister this instance so that the runtime will not return it from future Java.Interop.JniRuntime+JniValueManager.PeekValue invocations. (Inherited from IJavaPeerable) |
Extension Methods
JavaCast<TResult>(IJavaObject) |
Performs an Android runtime-checked type conversion. |
JavaCast<TResult>(IJavaObject) | |
GetJniTypeName(IJavaPeerable) |