Ejemplo n.º 1
0
 public XMLBuilder(string tempXmlFilePath)
 {
     //
     // TODO: 在此处添加构造函数逻辑
     //
     this.xmlFilePathType = EnumXmlPathType.VirtualPath;
     this.xmlFilePath     = tempXmlFilePath;
     GetXmlDocument();
     //xmlDoc.Load( xmlFilePath );
 }
Ejemplo n.º 2
0
 public XMLBuilder(string tempXmlFilePath, EnumXmlPathType tempXmlFilePathType)
 {
     this.xmlFilePathType = tempXmlFilePathType;
     this.xmlFilePath     = tempXmlFilePath;
     GetXmlDocument();
 }
Ejemplo n.º 3
0
 public XmlHelper(string tempxmlfilepath, EnumXmlPathType tempxmlfilepathtype)
 {
     this.XmlFilePathtype = tempxmlfilepathtype;
     this.XmlFilePath     = tempxmlfilepath;
     _xmldoc = GetXmlDocument();
 }
Ejemplo n.º 4
0
 public XmlHelper(string tempxmlfilepath)
 {
     this.XmlFilePathtype = EnumXmlPathType.VirtualPath;
     this.XmlFilePath     = tempxmlfilepath;
     _xmldoc = GetXmlDocument();
 }