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