C# Класс Appccelerate.IO.Streams.StreamExtensionMethods

Class to help with stream handling that is not covered by .NET.
Показать файл Открыть проект

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

Метод Описание
CompareStreamContentsTo ( this actual, Stream expected ) : bool

Compares the contents of the streams given.

CopyTo ( this input, Stream output ) : void

Copies the input stream to the output stream.

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

CompareStreamContentsTo() публичный статический Метод

Compares the contents of the streams given.
public static CompareStreamContentsTo ( this actual, Stream expected ) : bool
actual this /// The actual. ///
expected Stream /// The expected. ///
Результат bool

CopyTo() публичный статический Метод

Copies the input stream to the output stream.
or are null. /// is not readable or is /// not writable.
public static CopyTo ( this input, Stream output ) : void
input this The input stream.
output Stream The output stream.
Результат void