Org.BouncyCastle.Asn1.IndefiniteLengthInputStream.IndefiniteLengthInputStream C# (CSharp) Method

IndefiniteLengthInputStream() private method

private IndefiniteLengthInputStream ( Stream inStream, int limit ) : System
inStream System.IO.Stream
limit int
return System
        internal IndefiniteLengthInputStream(
            Stream	inStream,
            int		limit)
            : base(inStream, limit)
        {
            _lookAhead = RequireByte();
            CheckForEof();
        }