iTextSharp.text.pdf.parser.MarkedContentInfo.MarkedContentInfo C# (CSharp) Метод

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

public MarkedContentInfo ( PdfName tag, PdfDictionary dictionary ) : System
tag iTextSharp.text.pdf.PdfName
dictionary iTextSharp.text.pdf.PdfDictionary
Результат System
        public MarkedContentInfo(PdfName tag, PdfDictionary dictionary)
        {
            this.tag = tag;
            this.dictionary = dictionary != null ? dictionary : new PdfDictionary(); // I'd really prefer to make a defensive copy here to make this immutable
        }