C# Класс PluralsightDownloader.Web.ThrottledStream

Class for streaming data with throttling support.
Наследование: Stream
Показать файл Открыть проект

Открытые методы

Метод Описание
Flush ( ) : void

Clears all buffers for this stream and causes any buffered data to be written to the underlying device.

Read ( byte buffer, int offset, int count ) : int

Reads a sequence of bytes from the current stream and advances the position within the stream by the number of bytes read.

Seek ( long offset, SeekOrigin origin ) : long

Sets the position within the current stream.

SetLength ( long value ) : void

Sets the length of the current stream.

ThrottledStream ( Stream baseStream ) : System

Initializes a new instance of the T:ThrottledStream class with an infinite amount of bytes that can be processed.

ThrottledStream ( Stream baseStream, long maximumBytesPerSecond ) : System

Initializes a new instance of the T:ThrottledStream class.

ToString ( ) : string

Returns a that represents the current .

Write ( byte buffer, int offset, int count ) : void

Writes a sequence of bytes to the current stream and advances the current position within this stream by the number of bytes written.

Защищенные методы

Метод Описание
Reset ( ) : void

Will reset the bytecount to 0 and reset the start time to the current time.

Throttle ( int bufferSizeInBytes ) : void

Throttles for the specified buffer size in bytes.

Описание методов

Flush() публичный Метод

Clears all buffers for this stream and causes any buffered data to be written to the underlying device.
An I/O error occurs.
public Flush ( ) : void
Результат void

Read() публичный Метод

Reads a sequence of bytes from the current stream and advances the position within the stream by the number of bytes read.
The sum of offset and count is larger than the buffer length. Methods were called after the stream was closed. The base stream does not support reading. buffer is null. An I/O error occurs. offset or count is negative.
public Read ( byte buffer, int offset, int count ) : int
buffer byte An array of bytes. When this method returns, the buffer contains the specified byte array with the values between offset and (offset + count - 1) replaced by the bytes read from the current source.
offset int The zero-based byte offset in buffer at which to begin storing the data read from the current stream.
count int The maximum number of bytes to be read from the current stream.
Результат int

Reset() защищенный Метод

Will reset the bytecount to 0 and reset the start time to the current time.
protected Reset ( ) : void
Результат void

Seek() публичный Метод

Sets the position within the current stream.
An I/O error occurs. The base stream does not support seeking, such as if the stream is constructed from a pipe or console output. Methods were called after the stream was closed.
public Seek ( long offset, SeekOrigin origin ) : long
offset long A byte offset relative to the origin parameter.
origin SeekOrigin A value of type indicating the reference point used to obtain the new position.
Результат long

SetLength() публичный Метод

Sets the length of the current stream.
The base stream does not support both writing and seeking, such as if the stream is constructed from a pipe or console output. An I/O error occurs. Methods were called after the stream was closed.
public SetLength ( long value ) : void
value long The desired length of the current stream in bytes.
Результат void

Throttle() защищенный Метод

Throttles for the specified buffer size in bytes.
protected Throttle ( int bufferSizeInBytes ) : void
bufferSizeInBytes int The buffer size in bytes.
Результат void

ThrottledStream() публичный Метод

Initializes a new instance of the T:ThrottledStream class with an infinite amount of bytes that can be processed.
public ThrottledStream ( Stream baseStream ) : System
baseStream Stream The base stream.
Результат System

ThrottledStream() публичный Метод

Initializes a new instance of the T:ThrottledStream class.
Thrown when is a null reference. Thrown when is a negative value.
public ThrottledStream ( Stream baseStream, long maximumBytesPerSecond ) : System
baseStream Stream The base stream.
maximumBytesPerSecond long The maximum bytes per second that can be transferred through the base stream.
Результат System

ToString() публичный Метод

Returns a that represents the current .
public ToString ( ) : string
Результат string

Write() публичный Метод

Writes a sequence of bytes to the current stream and advances the current position within this stream by the number of bytes written.
An I/O error occurs. The base stream does not support writing. Methods were called after the stream was closed. buffer is null. The sum of offset and count is greater than the buffer length. offset or count is negative.
public Write ( byte buffer, int offset, int count ) : void
buffer byte An array of bytes. This method copies count bytes from buffer to the current stream.
offset int The zero-based byte offset in buffer at which to begin copying bytes to the current stream.
count int The number of bytes to be written to the current stream.
Результат void