iTextSharp.text.pdf.PdfStream.WriteContent C# (CSharp) Method

WriteContent() public method

public WriteContent ( Stream os ) : void
os Stream
return void
        public void WriteContent(Stream os)
        {
            if (streamBytes != null)
                streamBytes.WriteTo(os);
            else if (bytes != null)
                os.Write(bytes, 0, bytes.Length);
        }