Exemple #1
0
        /// <summary>
        /// Returns the information if the specified <paramref name="setting"/> is supported by this
        /// configuration plugin.
        /// </summary>
        /// <param name="setting">The setting to check.</param>
        /// <returns><c>true</c>, if the setting is supported, i.e. it can be displayed in the GUI, else
        /// <c>false</c>.</returns>
        protected bool IsSettingSupported(ConfigSetting setting)
        {
            ConfigurationController controller = FindConfigurationController(setting);

            return(controller != null && controller.IsSettingSupported(setting));
        }