2 writes to transportSecurity
System.ServiceModel (2)
System\ServiceModel\BasicHttpSecurity.cs (2)
27this.transportSecurity = transportSecurity == null ? new HttpTransportSecurity() : transportSecurity; 49this.transportSecurity = (value == null) ? new HttpTransportSecurity() : value;
6 references to transportSecurity
System.ServiceModel (6)
System\ServiceModel\BasicHttpSecurity.cs (6)
46get { return this.transportSecurity; } 66this.transportSecurity.ConfigureTransportProtectionOnly(https); 70this.transportSecurity.ConfigureTransportProtectionAndAuthentication(https); 81this.transportSecurity.ConfigureTransportAuthentication(http); 91this.transportSecurity.DisableTransportAuthentication(http); 147return transportSecurity.InternalShouldSerialize();