iTextSharp.text.pdf.OutputStreamEncryption.WriteByte C# (CSharp) Method

WriteByte() public method

public WriteByte ( byte value ) : void
value byte
return void
        public override void WriteByte(byte value)
        {
            buf[0] = value;
            Write(buf, 0, 1);
        }