Example #1
0
        public override string GetValue(baseKey RootKey, string key, string valueName, valueType ValueType)
        {
            string Value = string.Empty;

            if (IsConnected)
            {
                try
                {
                    Value = RegistryMethod.GetValue(connectionScope, RootKey, key, valueName, ValueType);
                }
                catch (Exception err)
                {
                    throw err;
                }
            }
            return(Value);
        }