public class EncodingTranslatorStream : Stream
Public Class EncodingTranslatorStream
Inherits Stream
public ref class EncodingTranslatorStream : public Stream
type EncodingTranslatorStream =
class
inherit Stream
end
EncodingTranslatorStream(Stream, Boolean, Encoding, Boolean) | Constructor. Specifies an output encoding, and a byte order mark detection option for the input stream |
EncodingTranslatorStream(Stream, Encoding, Encoding, Boolean) | Constructor. Specifies the input and output encoding. |
EncodingTranslatorStream(Stream, Encoding, Boolean, Encoding, Boolean) | Constructor. Specifies the input and output encoding, and a byte order mark detection option for the input stream |
CanRead | (Переопределяет StreamCanRead) |
CanSeek | (Переопределяет StreamCanSeek) |
CanTimeout | Gets a value that determines whether the current stream can time out. (Унаследован от Stream) |
CanWrite | (Переопределяет StreamCanWrite) |
Length |
Returns the length of the string in bytes. Note, depending on the encoding type of the stream, the byte length will vary,
as characters may require multiple bytes for certain encodings. Some encodings allow different byte lengths depending on the
character. This function will return the maximum amount of bytes that the string may take, as returning the actual
requires processing the entire string which is time and memory consuming.
(Переопределяет StreamLength) |
Position |
The actual position in bytes (not characters)
(Переопределяет StreamPosition) |
ReadTimeout | Gets or sets a value, in milliseconds, that determines how long the stream will attempt to read before timing out. (Унаследован от Stream) |
WriteTimeout | Gets or sets a value, in milliseconds, that determines how long the stream will attempt to write before timing out. (Унаследован от Stream) |
BeginRead | Begins an asynchronous read operation. (Consider using ReadAsync(Byte, Int32, Int32) instead.) (Унаследован от Stream) |
BeginWrite | Begins an asynchronous write operation. (Consider using WriteAsync(Byte, Int32, Int32) instead.) (Унаследован от Stream) |
Close | Closes the current stream and releases any resources (such as sockets and file handles) associated with the current stream. Instead of calling this method, ensure that the stream is properly disposed. (Унаследован от Stream) |
CopyTo(Stream) | Reads the bytes from the current stream and writes them to another stream. (Унаследован от Stream) |
CopyTo(Stream, Int32) | Reads the bytes from the current stream and writes them to another stream, using a specified buffer size. (Унаследован от Stream) |
CopyToAsync(Stream) | Asynchronously reads the bytes from the current stream and writes them to another stream. (Унаследован от Stream) |
CopyToAsync(Stream, Int32) | Asynchronously reads the bytes from the current stream and writes them to another stream, using a specified buffer size. (Унаследован от Stream) |
CopyToAsync(Stream, CancellationToken) | Asynchronously reads the bytes from the current stream and writes them to another stream, using a specified cancellation token. (Унаследован от Stream) |
CopyToAsync(Stream, Int32, CancellationToken) | Asynchronously reads the bytes from the current stream and writes them to another stream, using a specified buffer size and cancellation token. (Унаследован от Stream) |
CreateWaitHandle | Allocates a WaitHandle object. (Унаследован от Stream) Устарело. |
Dispose | Releases all resources used by the Stream. (Унаследован от Stream) |
Dispose(Boolean) | Освобождает неуправляемые ресурсы, используемые объектом EncodingTranslatorStream, а при необходимости освобождает также управляемые ресурсы (Переопределяет StreamDispose(Boolean)) |
DisposeAsync | (Переопределяет StreamDisposeAsync) |
EndRead | Waits for the pending asynchronous read to complete. (Consider using ReadAsync(Byte, Int32, Int32) instead.) (Унаследован от Stream) |
EndWrite | Ends an asynchronous write operation. (Consider using WriteAsync(Byte, Int32, Int32) instead.) (Унаследован от Stream) |
Equals | Determines whether the specified object is equal to the current object. (Унаследован от Object) |
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Унаследован от Object) |
Flush | (Переопределяет StreamFlush) |
FlushAsync | Asynchronously clears all buffers for this stream and causes any buffered data to be written to the underlying device. (Унаследован от Stream) |
FlushAsync(CancellationToken) | Asynchronously clears all buffers for this stream, causes any buffered data to be written to the underlying device, and monitors cancellation requests. (Унаследован от Stream) |
GetHashCode | Serves as the default hash function. (Унаследован от Object) |
GetLifetimeService | Retrieves the current lifetime service object that controls the lifetime policy for this instance. (Унаследован от MarshalByRefObject) |
GetType | Gets the Type of the current instance. (Унаследован от Object) |
InitializeLifetimeService | Obtains a lifetime service object to control the lifetime policy for this instance. (Унаследован от MarshalByRefObject) |
MemberwiseClone | Creates a shallow copy of the current Object. (Унаследован от Object) |
MemberwiseClone(Boolean) | Creates a shallow copy of the current MarshalByRefObject object. (Унаследован от MarshalByRefObject) |
ObjectInvariant | Provides support for a Contract. (Унаследован от Stream) Устарело. |
Read(SpanByte) | When overridden in a derived class, reads a sequence of bytes from the current stream and advances the position within the stream by the number of bytes read. (Унаследован от Stream) |
Read(Byte, Int32, Int32) |
Reads bytes from the stream. Bytes will be returned in the output encoding specified, regardless of the input encoding
(Переопределяет StreamRead(Byte, Int32, Int32)) |
ReadAsync(MemoryByte, CancellationToken) | Asynchronously reads a sequence of bytes from the current stream, advances the position within the stream by the number of bytes read, and monitors cancellation requests. (Унаследован от Stream) |
ReadAsync(Byte, Int32, Int32) | Asynchronously reads a sequence of bytes from the current stream and advances the position within the stream by the number of bytes read. (Унаследован от Stream) |
ReadAsync(Byte, Int32, Int32, CancellationToken) | (Переопределяет StreamReadAsync(Byte, Int32, Int32, CancellationToken)) |
ReadByte | Reads a byte from the stream and advances the position within the stream by one byte, or returns -1 if at the end of the stream. (Унаследован от Stream) |
Seek | (Переопределяет StreamSeek(Int64, SeekOrigin)) |
SetLength | (Переопределяет StreamSetLength(Int64)) |
ToString | Returns a string that represents the current object. (Унаследован от Object) |
Write(ReadOnlySpanByte) | When overridden in a derived class, writes a sequence of bytes to the current stream and advances the current position within this stream by the number of bytes written. (Унаследован от Stream) |
Write(Byte, Int32, Int32) | (Переопределяет StreamWrite(Byte, Int32, Int32)) |
WriteAsync(ReadOnlyMemoryByte, CancellationToken) | Asynchronously writes a sequence of bytes to the current stream, advances the current position within this stream by the number of bytes written, and monitors cancellation requests. (Унаследован от Stream) |
WriteAsync(Byte, Int32, Int32) | Asynchronously writes a sequence of bytes to the current stream and advances the current position within this stream by the number of bytes written. (Унаследован от Stream) |
WriteAsync(Byte, Int32, Int32, CancellationToken) | Asynchronously writes a sequence of bytes to the current stream, advances the current position within this stream by the number of bytes written, and monitors cancellation requests. (Унаследован от Stream) |
WriteByte | Writes a byte to the current position in the stream and advances the position within the stream by one byte. (Унаследован от Stream) |
AsMemoryStreamAsync |
Возвращает поток stream, преобразованный к типу MemoryStream.
Если его тип отличается от MemoryStream, то его содержимое будет скопировано в созданный объект
MemoryStream, после чего исходный stream будет освобождён,
но только если параметр disposeNonMemoryStream равен true.
(Определяется IOExtensions) |
CalculateStreamLengthAsync |
Вычисляет длину потока посредством его чтения, но отбрасывая сам контент.
(Определяется IOExtensions) |
Get | (Определяется ComHelper) |
InternalMarkerCanvas |
Возвращает маркер аннотации
(Определяется AnnotationInternalsAccessor) |
Invoke | (Определяется ComHelper) |
ReadAllBytes |
Выполняет синхронное чтение всех данных потока в виде одного массива байт.
Чтение выполняется до того момента, как поток перестанет возвращать данные,
при этом метод не использует свойство Length
для определения количества считываемых данных.
(Определяется IOExtensions) |
ReadAllBytesAsync |
Выполняет асинхронное чтение всех данных потока в виде одного массива байт.
Чтение выполняется до того момента, как поток перестанет возвращать данные,
при этом метод не использует свойство Length
для определения количества считываемых данных.
(Определяется IOExtensions) |
ReadByteAsync |
Выполняет асинхронное чтение целочисленного значения Byte из потока.
(Определяется IOExtensions) |
ReadBytes |
Выполняет чтение данных из потока stream и записывает их в возвращаемый массив байт,
который имеет максимальный размер length байт.
(Определяется IOExtensions) |
ReadBytesAsync |
Выполняет чтение данных из потока stream и записывает их в возвращаемый массив байт,
который имеет максимальный размер length байт.
(Определяется IOExtensions) |
ReadBytesExact |
Выполняет чтение данных из потока stream и записывает их в возвращаемый массив байт,
который имеет заданный размер length байт.
(Определяется IOExtensions) |
ReadBytesExactAsync |
Выполняет асинхронное чтение данных из потока stream и записывает их в возвращаемый массив байт,
который имеет заданный размер length байт.
(Определяется IOExtensions) |
ReadExact |
Выполняет чтение указанного количества байт из потока в буфер.
Возвращает количество действительно прочитанных байт, которое может быть меньше указанного количества
только в том случае, если поток завершился.
(Определяется IOExtensions) |
ReadExactAsync |
Выполняет асинхронное чтение указанного количества байт из потока в буфер.
Возвращает количество действительно прочитанных байт, которое может быть меньше указанного количества
только в том случае, если поток завершился.
(Определяется IOExtensions) |
ReadGuid |
Выполняет чтение значения Guid из потока.
(Определяется IOExtensions) |
ReadGuidAsync |
Выполняет асинхронное чтение значения Guid из потока.
(Определяется IOExtensions) |
ReadInt16Async |
Выполняет асинхронное чтение целочисленного значения Int16 из потока.
(Определяется IOExtensions) |
ReadInt32 |
Выполняет чтение целочисленного значения Int32 из потока.
(Определяется IOExtensions) |
ReadInt32Async |
Выполняет асинхронное чтение целочисленного значения Int32 из потока.
(Определяется IOExtensions) |
ReadInt64 |
Выполняет чтение целочисленного значения Int32 из потока.
(Определяется IOExtensions) |
ReadInt64Async |
Выполняет асинхронное чтение целочисленного значения Int32 из потока.
(Определяется IOExtensions) |
ReadString |
Выполняет чтение значения string из потока.
(Определяется IOExtensions) |
ReadStringAsync |
Выполняет асинхронное чтение значения string из потока.
(Определяется IOExtensions) |
Set | (Определяется ComHelper) |
TryReadPrimitiveType |
Выполняет чтение объекта примитивного типа из потока. Возвращает значение объекта или признак того,
что тип объекта type является примитивным, и объект был прочитан из потока.
(Определяется IOExtensions) |
TryReadPrimitiveTypeAsync |
Выполняет асинхронное чтение объекта примитивного типа из потока. Возвращает значение объекта или признак того,
что тип объекта type является примитивным, и объект был прочитан из потока.
(Определяется IOExtensions) |
TryWritePrimitiveType |
Выполняет запись объекта примитивного типа в поток. Возвращает признак того,
что тип объекта obj является примитивным, и объект был записан в поток.
(Определяется IOExtensions) |
TryWritePrimitiveTypeAsync |
Выполняет асинхронную запись объекта примитивного типа в поток. Возвращает признак того,
что тип объекта obj является примитивным, и объект был записан в поток.
(Определяется IOExtensions) |
Write |
Выполняет запись целочисленного значения Byte в поток.
(Определяется IOExtensions) |
Write |
Выполняет запись значения Guid в поток.
(Определяется IOExtensions) |
Write |
Выполняет запись целочисленного значения Int16 в поток.
(Определяется IOExtensions) |
Write |
Выполняет запись целочисленного значения Int32 в поток.
(Определяется IOExtensions) |
Write |
Выполняет запись целочисленного значения Int32 в поток.
(Определяется IOExtensions) |
Write |
Выполняет запись значения string в поток.
(Определяется IOExtensions) |
WriteAsync |
Выполняет асинхронную запись целочисленного значения Byte в поток.
(Определяется IOExtensions) |
WriteAsync |
Выполняет запись значения Guid в поток.
(Определяется IOExtensions) |
WriteAsync |
Выполняет асинхронную запись целочисленного значения Int16 в поток.
(Определяется IOExtensions) |
WriteAsync |
Выполняет асинхронную запись целочисленного значения Int32 в поток.
(Определяется IOExtensions) |
WriteAsync |
Выполняет асинхронную запись целочисленного значения Int32 в поток.
(Определяется IOExtensions) |
WriteAsync |
Выполняет асинхронную запись значения string в поток.
(Определяется IOExtensions) |
WriteStream |
Записывает все данные из потока source в поток target.
(Определяется IOExtensions) |
WriteStreamAsync |
Записывает все данные из потока source в поток target.
(Определяется IOExtensions) |
WriteTextAsync |
Записывает текст в поток в указанной кодировке. Также записывает преамбулу (BOM) в соответствии
с её наличием в кодировке encoding, что также определяется тем,
что stream находится в нулевой позиции, или если он не сообщает свою позицию,
т.е. CanSeek равно false (по этим же правилам работает StreamWriter).
(Определяется IOExtensions) |
WriteTextAsync |
Записывает текст в поток в указанной кодировке. Также записывает преамбулу (BOM) в соответствии
с её наличием в кодировке encoding, что также определяется тем,
что stream находится в нулевой позиции, или если он не сообщает свою позицию,
т.е. CanSeek равно false (по этим же правилам работает StreamWriter).
(Определяется IOExtensions) |