System.IO.Compression.FastEncoder.NeedsInput C# (CSharp) 메소드

NeedsInput() 공개 메소드

public NeedsInput ( ) : bool
리턴 bool
        public bool NeedsInput() {
            return ((this.inputBuffer.Count == 0) && (this.inputWindow.BytesAvailable == 0));
        }

Usage Example

예제 #1
0
 public bool NeedsInput()
 {
     return(encoder.NeedsInput());
 }