Coap.Proxy.Program.GetAppConfig C# (CSharp) Méthode

GetAppConfig() private static méthode

private static GetAppConfig ( string strKey ) : string
strKey string
Résultat string
        private static string GetAppConfig(string strKey)
        {
            foreach (string key in ConfigurationManager.AppSettings)
            {
                if (key == strKey)
                {
                    return ConfigurationManager.AppSettings[strKey];
                }
            }
            return null;
        }
    }