20 references to Rpc
System.ServiceModel (2)
System\ServiceModel\Description\MessageContractExporter.cs (1)
677soapOperationBinding.Style = isRpc ? WsdlNS.SoapBindingStyle.Rpc : WsdlNS.SoapBindingStyle.Document;
System\ServiceModel\Description\MessageContractImporter.cs (1)
1215return (style == WsdlNS.SoapBindingStyle.Rpc) ? OperationFormatStyle.Rpc : OperationFormatStyle.Document;
System.Web.Services (18)
System\Web\Services\Description\ServiceDescriptionSerializer.cs (4)
1223case global::System.Web.Services.Description.SoapBindingStyle.@Rpc: s = @"rpc"; break; 1283case global::System.Web.Services.Description.SoapBindingStyle.@Rpc: s = @"rpc"; break; 5977case @"rpc": return global::System.Web.Services.Description.SoapBindingStyle.@Rpc; 6039case @"rpc": return global::System.Web.Services.Description.SoapBindingStyle.@Rpc;
System\Web\Services\Description\SoapProtocolImporter.cs (10)
681requestMessageName = !String.IsNullOrEmpty(requestBinding.Name) && soapBindingStyle != SoapBindingStyle.Rpc ? requestBinding.Name : this.Operation.Name; // per WSDL 1.1 sec 3.5 685responseMessageName = !String.IsNullOrEmpty(responseBinding.Name) && soapBindingStyle != SoapBindingStyle.Rpc ? responseBinding.Name : this.Operation.Name + "Response"; // per WSDL 1.1 sec 3.5 690GenerateHeaders(metadata, soapRequestBinding.Use, soapBindingStyle == SoapBindingStyle.Rpc, requestBinding, responseBinding); 710bool wrapperNamesMatter = (soapBindingStyle != SoapBindingStyle.Rpc && hasWrapper) || (soapRequestBinding.Use == SoapBindingUse.Literal && soapBindingStyle == SoapBindingStyle.Rpc); 765if (soapBindingStyle == SoapBindingStyle.Rpc) { 786string ns = soapBindingStyle == SoapBindingStyle.Rpc ? parameter.mapping.Namespace : parameter.IsOut ? response.Namespace : request.Namespace; 1023if (soapBindingStyle == SoapBindingStyle.Rpc) { 1075if (soapBindingStyle == SoapBindingStyle.Rpc) { 1149if (soapBindingStyle == SoapBindingStyle.Rpc) {
System\Web\Services\Description\SoapProtocolReflector.cs (2)
68OperationBinding.Extensions.Add(CreateSoapOperationBinding(soapMethod.rpc ? SoapBindingStyle.Rpc : SoapBindingStyle.Document, soapMethod.action)); 231style = SoapBindingStyle.Rpc;
System\Web\Services\Description\WebServicesInteroperability.cs (2)
169if (opStyle == SoapBindingStyle.Rpc) { 189if (opStyle == SoapBindingStyle.Rpc) {