C# 클래스 Org.BouncyCastle.Utilities.IO.Streams

파일 보기 프로젝트 열기: nonorganic/dssnet

공개 메소드들

메소드 설명
Drain ( Stream inStr ) : void
PipeAll ( Stream inStr, Stream outStr ) : void
PipeAllLimited ( Stream inStr, long limit, Stream outStr ) : long

Pipe all bytes from inStr to outStr, throwing StreamFlowException if greater than limit bytes in inStr.

ReadAll ( Stream inStr ) : byte[]
ReadAllLimited ( Stream inStr, int limit ) : byte[]
ReadFully ( Stream inStr, byte buf ) : int
ReadFully ( Stream inStr, byte buf, int off, int len ) : int

비공개 메소드들

메소드 설명
Streams ( ) : System

메소드 상세

Drain() 공개 정적인 메소드

public static Drain ( Stream inStr ) : void
inStr Stream
리턴 void

PipeAll() 공개 정적인 메소드

public static PipeAll ( Stream inStr, Stream outStr ) : void
inStr Stream
outStr Stream
리턴 void

PipeAllLimited() 공개 정적인 메소드

Pipe all bytes from inStr to outStr, throwing StreamFlowException if greater than limit bytes in inStr.
public static PipeAllLimited ( Stream inStr, long limit, Stream outStr ) : long
inStr Stream /// A ///
limit long /// A ///
outStr Stream /// A ///
리턴 long

ReadAll() 공개 정적인 메소드

public static ReadAll ( Stream inStr ) : byte[]
inStr Stream
리턴 byte[]

ReadAllLimited() 공개 정적인 메소드

public static ReadAllLimited ( Stream inStr, int limit ) : byte[]
inStr Stream
limit int
리턴 byte[]

ReadFully() 공개 정적인 메소드

public static ReadFully ( Stream inStr, byte buf ) : int
inStr Stream
buf byte
리턴 int

ReadFully() 공개 정적인 메소드

public static ReadFully ( Stream inStr, byte buf, int off, int len ) : int
inStr Stream
buf byte
off int
len int
리턴 int