System.IO.Compression.FastEncoder.NeedsInput C# (CSharp) Méthode

NeedsInput() public méthode

public NeedsInput ( ) : bool
Résultat bool
        public bool NeedsInput() {
            return ((this.inputBuffer.Count == 0) && (this.inputWindow.BytesAvailable == 0));
        }

Usage Example

 public bool NeedsInput()
 {
     return(encoder.NeedsInput());
 }