iTextSharp.text.pdf.AcroFields.RevisionStream.ReadByte C# (CSharp) Method

ReadByte() public method

public ReadByte ( ) : int
return int
            public override int ReadByte() {
                int n = Read(b, 0, 1);
                if (n != 1)
                    return -1;
                return b[0] & 0xff;
            }