Esempio n. 1
0
        private void Stream(XmlNotation notation)
        {
            MDataObjs.Add(new ClassSeparator(typeof(XmlNotation)));

            MDataObjs.Add(new String("Public ID", notation.PublicId));
            MDataObjs.Add(new String("System ID", notation.SystemId));
        }
Esempio n. 2
0
 public static void DisplayNotations(XmlNamedNodeMap nMap)
 {
     for (int i = 0; i < nMap.Count; i++)
     {
         XmlNotation note = (XmlNotation)nMap.Item(i);
         Console.Write("{0} ", note.NodeType);
         Console.Write("{0} ", note.Name);
         Console.Write("{0} ", note.PublicId);
         Console.Write("{0} ", note.SystemId);
         Console.WriteLine();
     }
 }
Esempio n. 3
0
 internal DOMNotation(XmlNotation /*!*/ xmlNotation)
 {
     this.XmlNotation = xmlNotation;
 }
Esempio n. 4
0
 internal DOMNotation(XmlNotation /*!*/ xmlNotation)
     : base(ScriptContext.CurrentContext, true)
 {
     this.XmlNotation = xmlNotation;
 }
Esempio n. 5
0
 private void Stream(XmlNotation notation)
 {
     Data.Add(new ClassSeparatorData(typeof(XmlNotation)));
     Data.Add(new StringData("Public ID", notation.PublicId));
     Data.Add(new StringData("System ID", notation.SystemId));
 }