iTextSharp.text.pdf.PdfStream.WriteContent C# (CSharp) 메소드

WriteContent() 공개 메소드

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