public SVGOperationContextScope(SVGService service, IDictionary <string, string> dictionary)
 {
     dictionary = SVGOperationContext.GetDefaults().Merge(dictionary, key => key.ToUpper());
     context    = new SVGOperationContext(service, dictionary);
 }
 public SVGOperationContext(SVGService service, IDictionary <string, string> dictionary)
     : base(dictionary)
 {
     this.Service = service;
     this.ApplicationOptionsFactory = new ApplicationOptionsFactoryImpl(this);
 }
        public SVGOperationContextScope(SVGService service)
            : this(service, new Dictionary <string, string>())

        {
        }