iTextSharp.text.DocWriter.Write C# (CSharp) Метод

Write() защищенный Метод

Writes a string to the stream.
protected Write ( string str ) : void
str string the string to write
Результат void
        protected void Write(string str)
        {
            byte[] tmp = GetISOBytes(str);
            os.Write(tmp, 0, tmp.Length);
        }

Same methods

DocWriter::Write ( string key, string value ) : void