Ejemplo n.º 1
0
        public ChoFileXmlSerializer(XmlNode node) : base(node)
        {
            ConfigSectionName = node.Name;
            _configPath       = ChoConfigurationManager.GetConfigFile(node);

            if (_configPath == null || !File.Exists(_configPath))
            {
                ErrMsg = String.Format("{0} not exists.", _configPath);
            }
        }