Class that contains the settings for Magick.NET.Web.
Inheritance: System.Configuration.ConfigurationSection
        internal static MagickWebSettings CreateInstance(ISectionLoader sectionLoader)
        {
            MagickWebSettings section = sectionLoader.GetSection("magick.net.web");

            if (section == null)
            {
                throw new ConfigurationErrorsException("Unable to find section magick.net.web");
            }

            return(section);
        }
Beispiel #2
0
 internal MagickModule(MagickWebSettings settings)
 {
     _settings = settings;
 }