ACAT.Lib.Core.PanelManagement.PanelConfigMap.onXmlFileFound C# (CSharp) Метод

onXmlFileFound() приватный статический Метод

Found an XML file. Store the complete path to the file to the location map table
private static onXmlFileFound ( String xmlFileName ) : void
xmlFileName String name of the xml file
Результат void
        private static void onXmlFileFound(String xmlFileName)
        {
            String fileName = Path.GetFileName(xmlFileName).ToLower();
            if (!_configFileLocationMap.ContainsKey(fileName))
            {
                Log.Debug("Adding xmlfile " + fileName + ", fullPath: " + xmlFileName);
                _configFileLocationMap.Add(fileName.ToLower(), xmlFileName);
            }
        }