13 references to HttpTransportSecurity
System.ServiceModel (11)
System\ServiceModel\BasicHttpBinding.cs (1)
208
HttpTransportSecurity transportSecurity = new
HttpTransportSecurity
();
System\ServiceModel\BasicHttpSecurity.cs (3)
19
: this(DefaultMode, new
HttpTransportSecurity
(), new BasicHttpMessageSecurity())
27
this.transportSecurity = transportSecurity == null ? new
HttpTransportSecurity
() : transportSecurity;
49
this.transportSecurity = (value == null) ? new
HttpTransportSecurity
() : value;
System\ServiceModel\BasicHttpsSecurity.cs (2)
17
: this(DefaultMode, new
HttpTransportSecurity
(), new BasicHttpMessageSecurity())
27
HttpTransportSecurity httpTransportSecurity = transportSecurity == null ? new
HttpTransportSecurity
() : transportSecurity;
System\ServiceModel\Description\MetadataExchangeBindings.cs (1)
169
new WSHttpSecurity(SecurityMode.Transport, new
HttpTransportSecurity
(), new NonDualMessageSecurityOverHttp()), /* reliableSessionEnabled */ false);
System\ServiceModel\NetHttpBinding.cs (1)
233
HttpTransportSecurity transportSecurity = new
HttpTransportSecurity
();
System\ServiceModel\WS2007FederationHttpBinding.cs (1)
91
HttpTransportSecurity transportSecurity = new
HttpTransportSecurity
();
System\ServiceModel\WSFederationHttpBinding.cs (1)
128
HttpTransportSecurity transportSecurity = new
HttpTransportSecurity
();
System\ServiceModel\WSHttpSecurity.cs (1)
32
HttpTransportSecurity transportSecurity = new
HttpTransportSecurity
();
System.ServiceModel.Web (2)
System\ServiceModel\WebHttpSecurity.cs (2)
19
this.transportSecurity = new
HttpTransportSecurity
();
46
this.transportSecurity = (value == null) ? new
HttpTransportSecurity
() : value;