Org.BouncyCastle.Tls.ByteQueueInputStream
namespace Org.BouncyCastle.Tls
{
public sealed class ByteQueueInputStream : BaseInputStream
{
public int Available { get; }
public ByteQueueInputStream();
public void AddBytes(byte[] buf);
public void AddBytes(byte[] buf, int bufOff, int bufLen);
public int Peek(byte[] buf);
public long Skip(long n);
}
}