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

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

Writes a key-value pair to the stream.
protected Write ( string key, string value ) : void
key string the name of an attribute
value string the value of an attribute
Результат void
        protected void Write(string key, string value)
        {
            os.WriteByte(SPACE);
            Write(key);
            os.WriteByte(EQUALS);
            os.WriteByte(QUOTE);
            Write(value);
            os.WriteByte(QUOTE);
        }

Same methods

DocWriter::Write ( string str ) : void