10 writes to AllowCookies
System.ServiceModel (8)
System\ServiceModel\Channels\ContextBindingElementImporter.cs (3)
67http.AllowCookies = true; 102http.AllowCookies = false; 143http.AllowCookies = true;
System\ServiceModel\Configuration\HttpTransportElement.cs (1)
182binding.AllowCookies = this.AllowCookies;
System\ServiceModel\HttpBindingBase.cs (2)
47this.httpTransport.AllowCookies = value; 48this.httpsTransport.AllowCookies = value;
System\ServiceModel\WSHttpBinding.cs (2)
63HttpTransport.AllowCookies = value; 64HttpsTransport.AllowCookies = value;
System.ServiceModel.Web (2)
System\ServiceModel\WebHttpBinding.cs (2)
45httpTransportBindingElement.AllowCookies = value; 46httpsTransportBindingElement.AllowCookies = value;
9 references to AllowCookies
System.ServiceModel (8)
System\ServiceModel\Administration\EndpointInstanceProvider.cs (1)
201instance.SetProperty(AdministrationStrings.AllowCookies, http.AllowCookies);
System\ServiceModel\Channels\ContextBindingElement.cs (1)
348if (http != null && http.AllowCookies)
System\ServiceModel\Channels\ContextBindingElementImporter.cs (1)
100if (http != null && http.AllowCookies)
System\ServiceModel\Channels\HttpChannelFactory.cs (1)
106this.allowCookies = bindingElement.AllowCookies;
System\ServiceModel\Configuration\HttpTransportElement.cs (1)
244SetPropertyValueIfNotDefaultValue(ConfigurationStrings.AllowCookies, source.AllowCookies);
System\ServiceModel\HttpBindingBase.cs (1)
42return this.httpTransport.AllowCookies;
System\ServiceModel\WSHttpBinding.cs (2)
60get { return HttpTransport.AllowCookies; } 214allowCookies = httpTransportBindingElement.AllowCookies;
System.ServiceModel.Web (1)
System\ServiceModel\WebHttpBinding.cs (1)
42get { return httpTransportBindingElement.AllowCookies; }