Azavea.Open.Common.Config.MakeParameterCollection C# (CSharp) Method

MakeParameterCollection() protected method

This is a ugly hack at the moment. This allows child classes to override the internal type of collection we use. This will be removed when we refactor the architecture to have an abstract base class so we can have a "writeable" version of Config that does not conflict with the implementation of this "readonly" Config.
protected MakeParameterCollection ( ) : string>.IDictionary
return string>.IDictionary
        protected virtual IDictionary<string, string> MakeParameterCollection()
        {
            return new CheckedDictionary<string, string>(new CaseInsensitiveStringComparer());
        }