Azavea.Open.Common.Config.ClearConfigCache C# (CSharp) Method

ClearConfigCache() public static method

Allows you to explicitly remove a config from the cache, for example during unit testing, or any time when you know the config file in the cache is no longer valid.
public static ClearConfigCache ( string appName ) : void
appName string Identifies which config file we want.
return void
        public static void ClearConfigCache(string appName)
        {
            lock (_configCache)
            {
                _configCache.Remove(appName);
            }
        }