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

Meta() публичный Метод

Constructs a Meta.
public Meta ( int type, string content ) : System
type int the type of meta-information
content string the content
Результат System
        public Meta(int type, string content)
        {
            this.type = type;
            this.content = new StringBuilder(content);
        }

Same methods

Meta::Meta ( string tag, string content ) : System