InputSource Constructors

Definition

Overloads

InputSource()

Zero-argument default constructor.

InputSource(Reader)

Create a new input source with a character stream.

InputSource(Stream)

Create a new input source with a byte stream.

InputSource(String)

Create a new input source with a system identifier.

InputSource(IntPtr, JniHandleOwnership)

A constructor used when creating managed representations of JNI objects; called by the runtime.

InputSource()

Zero-argument default constructor.

[Android.Runtime.Register(".ctor", "()V", "")]
public InputSource ();
Attributes

Remarks

Java documentation for org.xml.sax.InputSource.InputSource().

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.

See also

Applies to

InputSource(Reader)

Create a new input source with a character stream.

[Android.Runtime.Register(".ctor", "(Ljava/io/Reader;)V", "")]
public InputSource (Java.IO.Reader? characterStream);
[<Android.Runtime.Register(".ctor", "(Ljava/io/Reader;)V", "")>]
new Org.Xml.Sax.InputSource : Java.IO.Reader -> Org.Xml.Sax.InputSource

Parameters

characterStream
Reader

The raw character stream containing the document.

Attributes

Remarks

Java documentation for org.xml.sax.InputSource.InputSource(java.io.Reader).

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.

See also

Applies to

InputSource(Stream)

Create a new input source with a byte stream.

[Android.Runtime.Register(".ctor", "(Ljava/io/InputStream;)V", "")]
public InputSource (System.IO.Stream? byteStream);
[<Android.Runtime.Register(".ctor", "(Ljava/io/InputStream;)V", "")>]
new Org.Xml.Sax.InputSource : System.IO.Stream -> Org.Xml.Sax.InputSource

Parameters

byteStream
Stream

The raw byte stream containing the document.

Attributes

Remarks

Java documentation for org.xml.sax.InputSource.InputSource(java.io.InputStream).

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.

See also

Applies to

InputSource(String)

Create a new input source with a system identifier.

[Android.Runtime.Register(".ctor", "(Ljava/lang/String;)V", "")]
public InputSource (string? systemId);
[<Android.Runtime.Register(".ctor", "(Ljava/lang/String;)V", "")>]
new Org.Xml.Sax.InputSource : string -> Org.Xml.Sax.InputSource

Parameters

systemId
String

The system identifier (URI).

Attributes

Remarks

Java documentation for org.xml.sax.InputSource.InputSource(java.lang.String).

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.

See also

Applies to

InputSource(IntPtr, JniHandleOwnership)

A constructor used when creating managed representations of JNI objects; called by the runtime.

protected InputSource (IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);
new Org.Xml.Sax.InputSource : nativeint * Android.Runtime.JniHandleOwnership -> Org.Xml.Sax.InputSource

Parameters

javaReference
IntPtr

A IntPtrcontaining a Java Native Interface (JNI) object reference.

transfer
JniHandleOwnership

A JniHandleOwnershipindicating how to handle javaReference

Remarks

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