EncodingTranslatorStreamRead(Byte, Int32, Int32) - метод
Reads bytes from the stream. Bytes will be returned in the output encoding specified, regardless of the input encoding
Пространство имён: Tessa.Platform.IOСборка: Tessa (в Tessa.dll) Версия: 3.6.0.22
public override int Read(
byte[] buffer,
int offset,
int count
)
Public Overrides Function Read (
buffer As Byte(),
offset As Integer,
count As Integer
) As Integer
public:
virtual int Read(
array<unsigned char>^ buffer,
int offset,
int count
) override
abstract Read :
buffer : byte[] *
offset : int *
count : int -> int
override Read :
buffer : byte[] *
offset : int *
count : int -> int
- buffer Byte
- Buffer to fill
- offset Int32
- Start position in the buffer
- count Int32
-
Count of bytes to read and put in the buffer.
Buffer needs to be long enough to accomodate offset + count
Int32