ReadElement() public method

public ReadElement ( XmlNode parentNode ) : void
parentNode System.Xml.XmlNode
return void
示例#1
0
 private void ReadElement(XmlNode parentNode, DocumentCollection collection)
 {
     if (collection == null)
     {
         return;
     }
     collection.ReadElement(parentNode);
 }
示例#2
0
 private void ReadElement(XmlNode parentNode, DocumentCollection collection)
 {
     if (collection == null)
         return;
     collection.ReadElement(parentNode);
 }