7 references to EnabledProtocols
System.Web.Services (7)
System\Web\Services\Configuration\WebServicesSection.cs (5)
259
WebServiceProtocols enabledProtocols = this.
EnabledProtocols
;
290
WebServiceProtocols enabledProtocols = this.
EnabledProtocols
;
355
WebServiceProtocols enabledProtocols = this.
EnabledProtocols
;
444
bool needPost = (this.
EnabledProtocols
& WebServiceProtocols.HttpPost) == 0;
445
bool needGet = (this.
EnabledProtocols
& WebServiceProtocols.HttpGet) == 0;
System\Web\Services\Description\ServiceDescriptionReflector.cs (1)
123
WebServiceProtocols enabledProtocols = WebServicesSection.Current.
EnabledProtocols
;
System\Web\Services\Protocols\SoapServerProtocol.cs (1)
241
this.protocolsSupported = WebServicesSection.Current.
EnabledProtocols
;