3 writes to paramStyle
System.Web.Services (3)
System\Web\Services\Protocols\SoapReflector.cs (3)
277soapMethod.paramStyle = attr.ParameterStyle; 294soapMethod.paramStyle = ((SoapDocumentServiceAttribute)serviceAttr).ParameterStyle; 296soapMethod.paramStyle = SoapParameterStyle.Wrapped;
11 references to paramStyle
System.Web.Services (11)
System\Web\Services\Description\SoapProtocolReflector.cs (2)
70CreateMessage(soapMethod.rpc, soapMethod.use, soapMethod.paramStyle, InputMessage, OperationBinding.Input, soapMethod.requestMappings); 72CreateMessage(soapMethod.rpc, soapMethod.use, soapMethod.paramStyle, OutputMessage, OperationBinding.Output, soapMethod.responseMappings);
System\Web\Services\Protocols\SoapClientProtocol.cs (1)
87clientMethod.paramStyle = soapMethod.paramStyle;
System\Web\Services\Protocols\SoapReflector.cs (6)
292if (soapMethod.paramStyle == SoapParameterStyle.Default) { 295if (soapMethod.paramStyle == SoapParameterStyle.Default) 372soapMethod.requestMappings = ImportMembersMapping(xmlImporter, soapImporter, serviceDefaultIsEncoded, soapMethod.rpc, soapMethod.use, soapMethod.paramStyle, requestElementName, requestNamespace, methodAttribute.requestNs == null, members, true, false, methodId, client); 375soapMethod.paramStyle == SoapParameterStyle.Bare && 381if (soapMethod.paramStyle == SoapParameterStyle.Bare) { 431soapMethod.responseMappings = ImportMembersMapping(xmlImporter, soapImporter, serviceDefaultIsEncoded, soapMethod.rpc, soapMethod.use, soapMethod.paramStyle, responseElementName, responseNamespace, methodAttribute.responseNs == null, members, false, false, methodId + ":Response", !client);
System\Web\Services\Protocols\SoapServerMethod.cs (1)
210this.paramStyle = soapMethod.paramStyle;
System\Web\Services\Protocols\SoapServerProtocol.cs (1)
141serverMethod.paramStyle = soapMethod.paramStyle;