C# Класс CmisSync.Lib.Streams.BandwidthNotifyingStream

Наследование: NotifyPropertyChangedStream
Показать файл Открыть проект Примеры использования класса

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

Метод Описание
BandwidthNotifyingStream ( Stream s ) : System
Close ( ) : void

Close this instance and calculates the bandwidth of the last second.

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

Read the specified buffer, offset and count.

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

Write the specified buffer, offset and count.

Приватные методы

Метод Описание
CalcBitsPerSecond ( System.DateTime start, System.DateTime end, long bytes ) : long

Calculates the bits per second.

CalculateBandwidth ( int transmittedBytes ) : void

Calculates the bandwidth.

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

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

public BandwidthNotifyingStream ( Stream s ) : System
s Stream
Результат System

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

Close this instance and calculates the bandwidth of the last second.
public Close ( ) : void
Результат void

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

Read the specified buffer, offset and count.
public Read ( byte buffer, int offset, int count ) : int
buffer byte /// Buffer. ///
offset int /// Offset. ///
count int /// Count. ///
Результат int

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

Write the specified buffer, offset and count.
public Write ( byte buffer, int offset, int count ) : void
buffer byte /// Buffer. ///
offset int /// Offset. ///
count int /// Count. ///
Результат void