5

構成セクションを記述するクラスを作成しており、次のシナリオに対応できる方法を探しています。

<plugins>
    <add name="resize" maxheight="500px" maxwidth="500px"/>
    <add name="watermark" font="arial"/>
</plugins>

リスト内の各項目には、必要な名前プロパティだけでなく、さまざまなプロパティを含めることができます。デフォルト セクションの設定は簡単ですが、動的なキーと値のペアを追加する方法に行き詰まっています。何か案は?

    /// <summary>
    /// Represents a PluginElementCollection collection configuration element 
    /// within the configuration.
    /// </summary>
    public class PluginElementCollection : ConfigurationElementCollection
    {
        /// <summary>
        /// Represents a PluginConfig configuration element within the 
        /// configuration.
        /// </summary>
        public class PluginElement : ConfigurationElement
        {
            /// <summary>
            /// Gets or sets the token of the plugin file.
            /// </summary>
            /// <value>The name of the plugin.</value>
            [ConfigurationProperty("name", DefaultValue = "", IsRequired = true)]
            public string Name
            {
                get { return (string)this["name"]; }

                set { this["name"] = value; }
            }

            // TODO: What goes here to create a series of dynamic 
            // key/value pairs.
        }

        /// <summary>
        /// Creates a new PluginConfig configuration element.
        /// </summary>
        /// <returns>
        /// A new PluginConfig configuration element.
        /// </returns>
        protected override ConfigurationElement CreateNewElement()
        {
            return new PluginElement();
        }

        /// <summary>
        /// Gets the element key for a specified PluginElement 
        /// configuration element.
        /// </summary>
        /// <param name="element">
        /// The <see cref="T:System.Configuration.ConfigurationElement"/> 
        /// to return the key for.
        /// </param>
        /// <returns>
        /// The element key for a specified PluginElement configuration element.
        /// </returns>
        protected override object GetElementKey(ConfigurationElement element)
        {
            return ((PluginElement)element).Name;
        }
    }
4

1 に答える 1