C# 클래스 Appccelerate.IO.Streams.StreamExtensionMethods

Class to help with stream handling that is not covered by .NET.
파일 보기 프로젝트 열기: appccelerate/appccelerate

공개 메소드들

메소드 설명
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