15 references to Rpc
dotnet-svcutil-lib (15)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\DataContractSerializerOperationBehavior.cs (1)
115return new PrimitiveOperationFormatter(operation, _dataContractFormatAttribute.Style == OperationFormatStyle.Rpc);
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\MessageContractImporter.cs (6)
258if (operationInfo.Style == OperationFormatStyle.Rpc) 665style = OperationFormatStyle.Rpc; 1203return (style == WsdlNS.SoapBindingStyle.Rpc) ? OperationFormatStyle.Rpc : OperationFormatStyle.Document; 1422if (style == OperationFormatStyle.Rpc && bodyBinding.Namespace != null) 1466style = OperationFormatStyle.Rpc; 2109if (isEncoded && style != OperationFormatStyle.Rpc)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\OperationGenerator.cs (1)
134_defaultNS = (style == OperationFormatStyle.Rpc) ? string.Empty : _contractNS;
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\XmlSerializerOperationBehavior.cs (2)
246OperationFormatter.Validate(operation, attr.Style == OperationFormatStyle.Rpc, false/*IsEncoded*/); 253this.IsRpc = (attr.Style == OperationFormatStyle.Rpc);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\DataContractSerializerOperationFormatter.cs (2)
75: base(description, dataContractFormatAttribute.Style == OperationFormatStyle.Rpc, false/*isEncoded*/) 138string ns = (style == OperationFormatStyle.Rpc || part.Namespace == null) ? string.Empty : part.Namespace;
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\XmlSerializerOperationFormatter.cs (1)
32base(description, xmlSerializerFormatAttribute.Style == OperationFormatStyle.Rpc, false/*isEncoded*/)
FrameworkFork\System.ServiceModel\System\ServiceModel\OperationFormatStyle.cs (1)
21x == OperationFormatStyle.Rpc ||
FrameworkFork\System.ServiceModel\System\ServiceModel\XmlSerializerFormatAttribute.cs (1)
42Style = OperationFormatStyle.Rpc;