3 writes to clientType
System.Web.Services (3)
System\Web\Services\Protocols\SoapClientProtocol.cs (3)
180
clientType
= (SoapClientType)GetFromCache(type);
183
clientType
= (SoapClientType)GetFromCache(type);
185
clientType
= new SoapClientType(type);
18 references to clientType
System.Web.Services (18)
System\Web\Services\Protocols\SoapClientProtocol.cs (18)
181
if (
clientType
== null) {
184
if (
clientType
== null) {
186
AddToCache(type,
clientType
);
197
if (
clientType
.Binding == null)
204
if (
clientType
.Binding.Name == soapBinding.Binding.Name &&
205
clientType
.Binding.Namespace == soapBinding.Binding.Namespace) {
211
throw new InvalidOperationException(Res.GetString(Res.TheBindingNamedFromNamespaceWasNotFoundIn3,
clientType
.Binding.Name,
clientType
.Binding.Namespace, Url));
504
SoapClientMethod method =
clientType
.GetMethod(methodName);
509
SoapReflectedExtension[] allExtensions = (SoapReflectedExtension[])CombineExtensionsHelper(
clientType
.HighPriExtensions, method.extensions,
clientType
.LowPriExtensions, typeof(SoapReflectedExtension));
510
object[] allExtensionInitializers = (object[])CombineExtensionsHelper(
clientType
.HighPriExtensionInitializers, method.extensionInitializers,
clientType
.LowPriExtensionInitializers, typeof(object));
563
writer.WriteAttributeString("xmlns", "tns", null,
clientType
.serviceNamespace);
564
writer.WriteAttributeString("xmlns", "types", null, SoapReflector.GetEncodedNamespace(
clientType
.serviceNamespace,
clientType
.serviceDefaultIsEncoded));
568
SoapHeaderHandling.WriteHeaders(writer, method.inHeaderSerializer, message.Headers, method.inHeaderMappings, SoapHeaderDirection.In, isEncoded,
clientType
.serviceNamespace,
clientType
.serviceDefaultIsEncoded, envelopeNs);