Exemplo n.º 1
0
 static void MainIis7(List <ServiceBase> services)
 {
     netTcpActivator = new TcpActivation();
     services.Add(netTcpActivator);
     netPipeActivator = new NamedPipeActivation();
     services.Add(netPipeActivator);
     netMsmqActivator = new MsmqActivation();
     services.Add(netMsmqActivator);
 }
Exemplo n.º 2
0
            public ActivationService(MsmqActivation service, string protocol)
            {
                this.protocol = protocol;
                this.bindings = service.bindings;
                this.service  = service;
                this.paused   = false;

                this.groups = new Dictionary <int, QueueMonitorGroup>();
            }
Exemplo n.º 3
0
 static void MainIis7(List<ServiceBase> services)
 {
     netTcpActivator = new TcpActivation();
     services.Add(netTcpActivator);
     netPipeActivator = new NamedPipeActivation();
     services.Add(netPipeActivator);
     netMsmqActivator = new MsmqActivation();
     services.Add(netMsmqActivator);
 }
Exemplo n.º 4
0
            public ActivationService(MsmqActivation service, string protocol)
            {
                this.protocol = protocol;
                this.bindings = service.bindings;
                this.service = service;
                this.paused = false;

                this.groups = new Dictionary<int, QueueMonitorGroup>();
            }