7 writes to AllowCookies
dotnet-svcutil-lib (7)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ContextBindingElementImporter.cs (3)
66http.AllowCookies = true; 100http.AllowCookies = false; 141http.AllowCookies = true;
FrameworkFork\System.ServiceModel\System\ServiceModel\HttpBindingBase.cs (2)
44_httpTransport.AllowCookies = value; 45_httpsTransport.AllowCookies = value;
FrameworkFork\System.ServiceModel\System\ServiceModel\WSHttpBinding.cs (2)
61HttpTransport.AllowCookies = value; 62HttpsTransport.AllowCookies = value;
5 references to AllowCookies
dotnet-svcutil-lib (5)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ContextBindingElementImporter.cs (1)
98if (http != null && http.AllowCookies)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\HttpChannelFactory.cs (1)
87_allowCookies = bindingElement.AllowCookies;
FrameworkFork\System.ServiceModel\System\ServiceModel\HttpBindingBase.cs (1)
39return _httpTransport.AllowCookies;
FrameworkFork\System.ServiceModel\System\ServiceModel\WSHttpBinding.cs (2)
58get { return HttpTransport.AllowCookies; } 195allowCookies = httpTransportBindingElement.AllowCookies;