public OwinCommunicationListener(IOwinListenerSpec pipelineSpec, ServiceInitializationParameters serviceParameters)
 {
     this.pipelineSpec = pipelineSpec;
     this.serviceParameters = serviceParameters;
 }
 public OwinCommunicationListener(IOwinListenerSpec pipelineSpec, ServiceInitializationParameters serviceParameters, string publishingAddressHostName)
 : this(pipelineSpec, serviceParameters)
 {
     this.mHostAddress = publishingAddressHostName;
 }
Esempio n. 3
0
 public OwinCommunicationListener(IOwinListenerSpec pipelineSpec, ServiceInitializationParameters serviceParameters)
 {
     this.pipelineSpec      = pipelineSpec;
     this.serviceParameters = serviceParameters;
 }
 public OwinCommunicationListener(IOwinListenerSpec pipelineSpec, ServiceInitializationParameters serviceParameters, string publishingAddressHostName)
     : this(pipelineSpec, serviceParameters)
 {
     this.mHostAddress = publishingAddressHostName;
 }
 public OwinCommunicationListener(IOwinListenerSpec pipelineSpec, ServiceContext serviceContext)
 {
     this.pipelineSpec   = pipelineSpec;
     this.serviceContext = serviceContext;
 }
 public OwinCommunicationListener(IOwinListenerSpec pipelineSpec, ServiceContext serviceContext, string publishingAddressHostName)
     : this(pipelineSpec, serviceContext)
 {
     this.mHostAddress = publishingAddressHostName;
 }