InputSource.CharacterStream 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.
Get the character stream for this input source. -or- Set the character stream for this input source.
public virtual Java.IO.Reader? CharacterStream { [Android.Runtime.Register("getCharacterStream", "()Ljava/io/Reader;", "GetGetCharacterStreamHandler")] get; [Android.Runtime.Register("setCharacterStream", "(Ljava/io/Reader;)V", "GetSetCharacterStream_Ljava_io_Reader_Handler")] set; }
[<get: Android.Runtime.Register("getCharacterStream", "()Ljava/io/Reader;", "GetGetCharacterStreamHandler")>]
[<set: Android.Runtime.Register("setCharacterStream", "(Ljava/io/Reader;)V", "GetSetCharacterStream_Ljava_io_Reader_Handler")>]
member this.CharacterStream : Java.IO.Reader with get, set
Property Value
The character stream, or null if none was supplied.
- Attributes
Remarks
Property getter documentation:
Get the character stream for this input source.
Java documentation for org.xml.sax.InputSource.getCharacterStream()
.
Property setter documentation:
Set the character stream for this input source.
If there is a character stream specified, the SAX parser will ignore any byte stream and will not attempt to open a URI connection to the system identifier.
Java documentation for org.xml.sax.InputSource.setCharacterStream(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.