public xmlAssembly(XmlDocument xDoc
                               , myAssembly oAssembly
                               , string sType
                               , string sPath)
            {
                _xDoc      = xDoc;
                _oAssembly = oAssembly;

                string xNodePath = string.Format("//appConfig/requestData[@type='{0}']/file[@name='{1}']", sType, sPath);

                //
                XmlNode xNode = xDoc.SelectSingleNode(xNodePath);

                this.AssemblyName = xNode.getXmlAttributeValue("assemblyName");
                this.classPath    = xNode.getXmlAttributeValue("classPath");
                this.functionName = xNode.getXmlAttributeValue("func");
            }
Пример #2
0
 public clsRequestCommand_other(myAssembly oAssembly)
 {
     _assembly = oAssembly;
 }
Пример #3
0
 public clsRequestFileData_Assembly(myAssembly oAssembly)
 {
     _Assembly = oAssembly;
 }