예제 #1
0
        internal ProcessorArgs([NotNull] BootcampCore bootcampCore, HttpServerUtility server, BootcampMode mode, string sitecoreVersion)
        {
            Assert.ArgumentNotNull(bootcampCore, "bootcampCore");
              Assert.ArgumentNotNull(server, "server");

              this.BootcampCore = bootcampCore;
              this.Mode = mode;
              this.Server = server;
              this.SitecoreVersion = sitecoreVersion;
        }
예제 #2
0
        internal ProcessorArgs([NotNull] BootcampCore bootcampCore, HttpServerUtility server, BootcampMode mode, string sitecoreVersion)
        {
            Assert.ArgumentNotNull(bootcampCore, "bootcampCore");
            Assert.ArgumentNotNull(server, "server");

            this.BootcampCore    = bootcampCore;
            this.Mode            = mode;
            this.Server          = server;
            this.SitecoreVersion = sitecoreVersion;
        }
예제 #3
0
        public BootcampCore([NotNull] HttpServerUtility server, [NotNull] HttpApplicationState application, [CanBeNull] HttpResponse response, BootcampMode mode, bool noisy)
        {
            Assert.ArgumentNotNull(server, "server");
            Assert.ArgumentNotNull(application, "application");

            this.Server      = server;
            this.Application = application;
            this.Response    = response;
            this.Mode        = mode;
            this.Noisy       = noisy;
        }
예제 #4
0
        public BootcampCore([NotNull] HttpServerUtility server, [NotNull] HttpApplicationState application, [CanBeNull] HttpResponse response, BootcampMode mode, bool noisy)
        {
            Assert.ArgumentNotNull(server, "server");
              Assert.ArgumentNotNull(application, "application");

              this.Server = server;
              this.Application = application;
              this.Response = response;
              this.Mode = mode;
              this.Noisy = noisy;
        }
예제 #5
0
        public static void Install([NotNull] Page page, BootcampMode mode, bool noisy)
        {
            Assert.ArgumentNotNull(page, "page");

            new BootcampCore(page, mode, noisy).Install();
        }
예제 #6
0
 public BootcampCore(HttpContext context, BootcampMode mode, bool noisy) : this(context.Server, context.Application, context.Response, mode, noisy)
 {
     Assert.ArgumentNotNull(context, "context");
 }
예제 #7
0
 internal BootcampCore([NotNull] Page page, BootcampMode mode, bool noisy) : this(page.Server, page.Application, page.Response, mode, noisy)
 {
     Assert.ArgumentNotNull(page, "page");
 }
예제 #8
0
        public static void Install([NotNull] Page page, BootcampMode mode, bool noisy)
        {
            Assert.ArgumentNotNull(page, "page");

              new BootcampCore(page, mode, noisy).Install();
        }
예제 #9
0
 internal BootcampCore([NotNull] Page page, BootcampMode mode, bool noisy)
     : this(page.Server, page.Application, page.Response, mode, noisy)
 {
     Assert.ArgumentNotNull(page, "page");
 }
예제 #10
0
 public BootcampCore(HttpContext context, BootcampMode mode, bool noisy)
     : this(context.Server, context.Application, context.Response, mode, noisy)
 {
     Assert.ArgumentNotNull(context, "context");
 }