public class BinaryReader extends NetObject implements java.lang.AutoCloseable
.NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.IO.BinaryReader
Powered by JCOBridge: more info at https://www.jcobridge.com
| Modifier and Type | Field and Description |
|---|---|
static java.lang.String |
assemblyFullName
Fully assembly qualified name: mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
|
static java.lang.String |
assemblyShortName
Assembly name: mscorlib
|
static java.lang.String |
className
Qualified class name: System.IO.BinaryReader
|
static JCType |
classType
The type managed from JCOBridge.
|
| Constructor and Description |
|---|
BinaryReader() |
BinaryReader(java.lang.Object instance)
Internal constructor.
|
BinaryReader(Stream input) |
BinaryReader(Stream input,
Encoding encoding) |
BinaryReader(Stream input,
Encoding encoding,
boolean leaveOpen) |
| Modifier and Type | Method and Description |
|---|---|
static BinaryReader |
cast(IJCOBridgeReflected from)
Try to cast the
IJCOBridgeReflected instance into BinaryReader, a cast assert is made to check if types are compatible. |
void |
close() |
void |
Close() |
void |
Dispose() |
Stream |
getBaseStream() |
java.lang.String |
getJCOAssemblyName()
Returns the reflected Assembly name
|
java.lang.String |
getJCOClassName()
Returns the reflected Class name
|
java.lang.Object |
getJCOInstance()
Returns the instantiated class
|
java.lang.String |
getJCOObjectName()
Returns the reflected Class name used to build the object
|
JCType |
getJCOType()
Returns the instantiated class Type
|
int |
PeekChar() |
int |
Read() |
int |
Read(byte[] buffer,
int index,
int count) |
int |
Read(char[] buffer,
int index,
int count) |
int |
Read(JCORefOut dupParam0,
int dupParam1,
int dupParam2) |
boolean |
ReadBoolean() |
byte |
ReadByte() |
byte[] |
ReadBytes(int count) |
char |
ReadChar() |
char[] |
ReadChars(int count) |
Decimal |
ReadDecimal() |
double |
ReadDouble() |
short |
ReadInt16() |
int |
ReadInt32() |
long |
ReadInt64() |
SByte |
ReadSByte() |
Single |
ReadSingle() |
java.lang.String |
ReadString() |
UInt16 |
ReadUInt16() |
UInt32 |
ReadUInt32() |
UInt64 |
ReadUInt64() |
void |
setJCOInstance(JCObject instance) |
public static final java.lang.String assemblyFullName
public static final java.lang.String assemblyShortName
public static final java.lang.String className
public BinaryReader()
throws java.lang.Throwable
java.lang.Throwablepublic BinaryReader(java.lang.Object instance)
throws java.lang.Throwable
java.lang.Throwablepublic BinaryReader(Stream input) throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, ArgumentException
java.lang.ThrowableArgumentOutOfRangeExceptionArgumentNullExceptionArgumentExceptionpublic BinaryReader(Stream input, Encoding encoding) throws java.lang.Throwable, ArgumentNullException, ArgumentException
java.lang.ThrowableArgumentNullExceptionArgumentExceptionpublic BinaryReader(Stream input, Encoding encoding, boolean leaveOpen) throws java.lang.Throwable, ArgumentNullException, ArgumentException
java.lang.ThrowableArgumentNullExceptionArgumentExceptionpublic static BinaryReader cast(IJCOBridgeReflected from) throws java.lang.Throwable
IJCOBridgeReflected instance into BinaryReader, a cast assert is made to check if types are compatible.from - IJCOBridgeReflected instance to be castedBinaryReader instancejava.lang.Throwable - in case of error during cast operationpublic void close()
throws java.lang.Exception
close in interface java.lang.AutoCloseablejava.lang.Exceptionpublic void Close()
throws java.lang.Throwable,
ArgumentNullException
java.lang.ThrowableArgumentNullExceptionpublic void Dispose()
throws java.lang.Throwable,
ArgumentNullException
java.lang.ThrowableArgumentNullExceptionpublic Stream getBaseStream() throws java.lang.Throwable
java.lang.Throwablepublic java.lang.String getJCOAssemblyName()
IJCOBridgeReflectedgetJCOAssemblyName in interface IJCOBridgeReflectedgetJCOAssemblyName in class NetObjectString representing the Fullname of reflected Assemblypublic java.lang.String getJCOClassName()
IJCOBridgeReflectedgetJCOClassName in interface IJCOBridgeReflectedgetJCOClassName in class NetObjectString representing the Fullname of reflected Classpublic java.lang.Object getJCOInstance()
IJCOBridgeReflectedgetJCOInstance in interface IJCOBridgeReflectedgetJCOInstance in class NetObjectObject representing the CLR instance of the instantiated Classpublic java.lang.String getJCOObjectName()
IJCOBridgeReflectedgetJCOObjectName in interface IJCOBridgeReflectedgetJCOObjectName in class NetObjectString representing the name used to allocated the object
in CLR contextpublic JCType getJCOType()
IJCOBridgeReflectedgetJCOType in interface IJCOBridgeReflectedgetJCOType in class NetObjectJCType representing the CLR Type of the instantiated Classpublic int PeekChar()
throws java.lang.Throwable,
ObjectDisposedException
java.lang.ThrowableObjectDisposedExceptionpublic int Read()
throws java.lang.Throwable,
ObjectDisposedException
java.lang.ThrowableObjectDisposedExceptionpublic int Read(byte[] buffer,
int index,
int count)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentOutOfRangeException,
ArgumentException,
ObjectDisposedException
java.lang.ThrowableArgumentNullExceptionArgumentOutOfRangeExceptionArgumentExceptionObjectDisposedExceptionpublic int Read(char[] buffer,
int index,
int count)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentOutOfRangeException,
ArgumentException,
ObjectDisposedException
java.lang.ThrowableArgumentNullExceptionArgumentOutOfRangeExceptionArgumentExceptionObjectDisposedExceptionpublic int Read(JCORefOut dupParam0, int dupParam1, int dupParam2) throws java.lang.Throwable, ArgumentNullException, ArgumentOutOfRangeException, ArgumentException, ObjectDisposedException
java.lang.ThrowableArgumentNullExceptionArgumentOutOfRangeExceptionArgumentExceptionObjectDisposedExceptionpublic boolean ReadBoolean()
throws java.lang.Throwable,
ArgumentOutOfRangeException,
ObjectDisposedException,
EndOfStreamException
java.lang.ThrowableArgumentOutOfRangeExceptionObjectDisposedExceptionEndOfStreamExceptionpublic byte ReadByte()
throws java.lang.Throwable,
ObjectDisposedException,
EndOfStreamException
java.lang.ThrowableObjectDisposedExceptionEndOfStreamExceptionpublic byte[] ReadBytes(int count)
throws java.lang.Throwable,
ArgumentOutOfRangeException,
ObjectDisposedException
java.lang.ThrowableArgumentOutOfRangeExceptionObjectDisposedExceptionpublic char ReadChar()
throws java.lang.Throwable,
ObjectDisposedException,
EndOfStreamException
java.lang.ThrowableObjectDisposedExceptionEndOfStreamExceptionpublic char[] ReadChars(int count)
throws java.lang.Throwable,
ArgumentOutOfRangeException,
ObjectDisposedException,
ArgumentNullException
java.lang.ThrowableArgumentOutOfRangeExceptionObjectDisposedExceptionArgumentNullExceptionpublic Decimal ReadDecimal() throws java.lang.Throwable, ArgumentOutOfRangeException, ObjectDisposedException, EndOfStreamException, ArgumentException, IOException
java.lang.ThrowableArgumentOutOfRangeExceptionObjectDisposedExceptionEndOfStreamExceptionArgumentExceptionIOExceptionpublic double ReadDouble()
throws java.lang.Throwable,
ArgumentOutOfRangeException,
ObjectDisposedException,
EndOfStreamException
java.lang.ThrowableArgumentOutOfRangeExceptionObjectDisposedExceptionEndOfStreamExceptionpublic short ReadInt16()
throws java.lang.Throwable,
ArgumentOutOfRangeException,
ObjectDisposedException,
EndOfStreamException
java.lang.ThrowableArgumentOutOfRangeExceptionObjectDisposedExceptionEndOfStreamExceptionpublic int ReadInt32()
throws java.lang.Throwable,
ObjectDisposedException,
EndOfStreamException,
ArgumentOutOfRangeException
java.lang.ThrowableObjectDisposedExceptionEndOfStreamExceptionArgumentOutOfRangeExceptionpublic long ReadInt64()
throws java.lang.Throwable,
ArgumentOutOfRangeException,
ObjectDisposedException,
EndOfStreamException
java.lang.ThrowableArgumentOutOfRangeExceptionObjectDisposedExceptionEndOfStreamExceptionpublic SByte ReadSByte() throws java.lang.Throwable, ArgumentOutOfRangeException, ObjectDisposedException, EndOfStreamException
java.lang.ThrowableArgumentOutOfRangeExceptionObjectDisposedExceptionEndOfStreamExceptionpublic Single ReadSingle() throws java.lang.Throwable, ArgumentOutOfRangeException, ObjectDisposedException, EndOfStreamException
java.lang.ThrowableArgumentOutOfRangeExceptionObjectDisposedExceptionEndOfStreamExceptionpublic java.lang.String ReadString()
throws java.lang.Throwable,
ObjectDisposedException,
FormatException,
EndOfStreamException,
ArgumentNullException,
TypeLoadException,
ArgumentException,
InvalidOperationException,
MissingMethodException,
TargetInvocationException,
NotSupportedException,
CultureNotFoundException,
ArgumentOutOfRangeException,
OutOfMemoryException,
IOException
java.lang.ThrowableObjectDisposedExceptionFormatExceptionEndOfStreamExceptionArgumentNullExceptionTypeLoadExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotSupportedExceptionCultureNotFoundExceptionArgumentOutOfRangeExceptionOutOfMemoryExceptionIOExceptionpublic UInt16 ReadUInt16() throws java.lang.Throwable, ArgumentOutOfRangeException, ObjectDisposedException, EndOfStreamException
java.lang.ThrowableArgumentOutOfRangeExceptionObjectDisposedExceptionEndOfStreamExceptionpublic UInt32 ReadUInt32() throws java.lang.Throwable, ArgumentOutOfRangeException, ObjectDisposedException, EndOfStreamException
java.lang.ThrowableArgumentOutOfRangeExceptionObjectDisposedExceptionEndOfStreamExceptionpublic UInt64 ReadUInt64() throws java.lang.Throwable, ArgumentOutOfRangeException, ObjectDisposedException, EndOfStreamException
java.lang.ThrowableArgumentOutOfRangeExceptionObjectDisposedExceptionEndOfStreamExceptionpublic void setJCOInstance(JCObject instance)
setJCOInstance in class NetObject