16 references to Security
System.ServiceModel.Web (16)
System\ServiceModel\Configuration\WebHttpBindingElement.cs (2)
199this.Security.InitializeFrom(webBinding.Security); 259this.Security.ApplyConfiguration(webBinding.Security);
System\ServiceModel\Description\WebServiceEndpoint.cs (1)
58get { return this.webHttpBinding.Security; }
System\ServiceModel\Web\WebChannelFactory.cs (2)
96result.Security.Mode = WebHttpSecurityMode.Transport; 97result.Security.Transport.ClientCredentialType = HttpClientCredentialType.None;
System\ServiceModel\Web\WebServiceHost.cs (10)
138bool automaticallyConfigureSecurity = !binding.Security.IsModeSet; 143binding.Security.Mode = WebHttpSecurityMode.Transport; 147binding.Security.Mode = WebHttpSecurityMode.TransportCredentialOnly; 151binding.Security.Mode = WebHttpSecurityMode.None; 354whb.Security.Transport.ClientCredentialType = HttpClientCredentialType.Digest; 359whb.Security.Transport.ClientCredentialType = HttpClientCredentialType.Windows; 362whb.Security.Transport.ClientCredentialType = HttpClientCredentialType.Ntlm; 365whb.Security.Transport.ClientCredentialType = HttpClientCredentialType.Basic; 368whb.Security.Transport.ClientCredentialType = HttpClientCredentialType.None; 371whb.Security.Transport.ClientCredentialType = HttpClientCredentialType.InheritedFromHost;
System\ServiceModel\WebHttpBinding.cs (1)
296return Security.InternalShouldSerialize();