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

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

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

Same methods

Meta::Meta ( int type, string content ) : System