pGina.Shared.Settings.pGinaDynamicSettings.GetSettings C# (CSharp) Method

GetSettings() public static method

Get a dictionary containing all values of the pgina registry key. The Dictionary key is the sub-key name, the value is a pGinaDynamicSettings object corresponding to the sub-key.
public static GetSettings ( string subKey, string encypted ) : string>.Dictionary
subKey string
encypted string
return string>.Dictionary
        public static Dictionary<string, string> GetSettings(string subKey, string[] encypted)
        {
            dynamic s_settings = new Abstractions.Settings.DynamicSettings(subKey);
            return s_settings.GetSettings(encypted);
        }