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

파일 보기 프로젝트 열기: Nethereum/Nethereum

공개 메소드들

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

메소드 상세

Drain() 공개 정적인 메소드

public static Drain ( Stream inStr ) : void
inStr System.IO.Stream
리턴 void

PipeAll() 공개 정적인 메소드

public static PipeAll ( Stream inStr, Stream outStr ) : void
inStr System.IO.Stream
outStr System.IO.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 System.IO.Stream /// A ///
limit long /// A ///
outStr System.IO.Stream /// A ///
리턴 long

ReadAll() 공개 정적인 메소드

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

ReadAllLimited() 공개 정적인 메소드

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

ReadFully() 공개 정적인 메소드

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

ReadFully() 공개 정적인 메소드

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