12 references to Namespace
System.Web.Services (12)
System\Web\Services\Description\ProtocolReflector.cs (2)
292AddImport(reflectedBinding.bindingAttr.Namespace, reflectedBinding.bindingAttr.Location); 363string bindingNamespace = reflectedBinding.bindingAttr.Namespace;
System\Web\Services\Protocols\ClientProtocol.cs (1)
921string serviceNamespace = binding.Namespace;
System\Web\Services\Protocols\SoapClientProtocol.cs (3)
44serviceNamespace = binding.Namespace; 205clientType.Binding.Namespace == soapBinding.Binding.Namespace) { 211throw new InvalidOperationException(Res.GetString(Res.TheBindingNamedFromNamespaceWasNotFoundIn3, clientType.Binding.Name, clientType.Binding.Namespace, Url));
System\Web\Services\Protocols\SoapReflector.cs (6)
322if (soapMethod.binding != null && soapMethod.binding.Namespace != null && soapMethod.binding.Namespace.Length != 0) 323requestNamespace = soapMethod.binding.Namespace; 341if (soapMethod.binding != null && soapMethod.binding.Namespace != null && soapMethod.binding.Namespace.Length != 0) 342responseNamespace = soapMethod.binding.Namespace;