iTextSharp.text.pdf.SimpleNamedDestination.ImportFromXML C# (CSharp) Метод

ImportFromXML() публичный статический Метод

public static ImportFromXML ( Stream inp ) : string>.Dictionary
inp Stream
Результат string>.Dictionary
        public static Dictionary<string, string> ImportFromXML(Stream inp)
        {
            SimpleNamedDestination names = new SimpleNamedDestination();
            SimpleXMLParser.Parse(names, inp);
            return names.xmlNames;
        }

Same methods

SimpleNamedDestination::ImportFromXML ( TextReader inp ) : string>.Dictionary