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