15 references to ManualAddressing
System.ServiceModel (15)
System\ServiceModel\Channels\HttpChannelFactory.cs (5)
455return (TChannel)(object)new HttpRequestChannel((HttpChannelFactory<IRequestChannel>)(object)this, remoteAddress, via, ManualAddressing); 816if (ManualAddressing) 1165return ((this.tokenProvider == null) && !Factory.ManualAddressing); 1946if (factory.ManualAddressing) 2043if (this.factory.ManualAddressing)
System\ServiceModel\Channels\HttpsChannelFactory.cs (6)
134return (TChannel)(object)new HttpsRequestChannel((HttpsChannelFactory<IRequestChannel>)(object)this, address, via, ManualAddressing); 212if (ManualAddressing && this.RequireClientCertificate) 226if (ManualAddressing && this.RequireClientCertificate) 391return (this.certificateProvider == null && !Factory.ManualAddressing); 423if (this.factory.ManualAddressing && this.factory.RequireClientCertificate) 545if (this.factory.ManualAddressing && this.certificateProvider != null)
System\ServiceModel\Channels\MsmqChannelFactory.cs (2)
49return new MsmqOutputChannel(this, to, via, ManualAddressing); 63return new MsmqOutputSessionChannel(this, to, via, ManualAddressing);
System\ServiceModel\Channels\TransportChannelFactory.cs (1)
200get { return ManualAddressing; }
System\ServiceModel\MsmqIntegration\MsmqIntegrationChannelFactory.cs (1)
113return new MsmqIntegrationOutputChannel(this, to, via, ManualAddressing);