GetXmlNode() 공개 메소드

public GetXmlNode ( XmlDocument document ) : XmlNode
document System.Xml.XmlDocument
리턴 System.Xml.XmlNode
예제 #1
0
 private void CreateElement(XmlDocument document, XmlNode parentElement, DocumentCollection collection)
 {
     if (collection == null)
     {
         return;
     }
     parentElement.AppendChild(collection.GetXmlNode(document));
 }
예제 #2
0
 private void CreateElement(XmlDocument document, XmlNode parentElement, DocumentCollection collection)
 {
     if (collection == null)
         return;
     parentElement.AppendChild(collection.GetXmlNode(document));
 }