24 references to Rpc
System.ServiceModel (23)
System\ServiceModel\Description\DataContractSerializerOperationBehavior.cs (1)
124
return new PrimitiveOperationFormatter(operation, dataContractFormatAttribute.Style == OperationFormatStyle.
Rpc
);
System\ServiceModel\Description\MessageContractExporter.cs (7)
756
isRpc = dataContractSerializerBehavior.DataContractFormatAttribute.Style == OperationFormatStyle.
Rpc
;
768
isRpc = xmlSerializerBehavior.XmlSerializerFormatAttribute.Style == OperationFormatStyle.
Rpc
;
920
return ((DataContractSerializerOperationBehavior)extension).DataContractFormatAttribute.Style == OperationFormatStyle.
Rpc
;
980
ExportMessagePart(wsdlMessage, description.Body.ReturnValue, typeName, xsdType, true/*isOptional*/, IsTypeNullable(description.Body.ReturnValue.Type), false/*isOperationInherited*/, dataContractFormatAttribute.Style != OperationFormatStyle.
Rpc
, description.Body.WrapperNamespace, wrapperSequence, SchemaSet);
988
ExportMessagePart(wsdlMessage, bodyPart, typeName, xsdType, true/*isOptional*/, IsTypeNullable(bodyPart.Type), false/*isOperationInherited*/, dataContractFormatAttribute.Style != OperationFormatStyle.
Rpc
, description.Body.WrapperNamespace, wrapperSequence, SchemaSet);
990
if (dataContractFormatAttribute.Style == OperationFormatStyle.
Rpc
)
1042
return ((XmlSerializerOperationBehavior)extension).XmlSerializerFormatAttribute.Style == OperationFormatStyle.
Rpc
;
System\ServiceModel\Description\MessageContractImporter.cs (6)
269
if (operationInfo.Style == OperationFormatStyle.
Rpc
)
676
style = OperationFormatStyle.
Rpc
;
1215
return (style == WsdlNS.SoapBindingStyle.Rpc) ? OperationFormatStyle.
Rpc
: OperationFormatStyle.Document;
1434
if (style == OperationFormatStyle.
Rpc
&& bodyBinding.Namespace != null)
1478
style = OperationFormatStyle.
Rpc
;
2122
if (isEncoded && style != OperationFormatStyle.
Rpc
)
System\ServiceModel\Description\OperationGenerator.cs (1)
134
this.DefaultNS = (style == OperationFormatStyle.
Rpc
) ? string.Empty : this.ContractNS;
System\ServiceModel\Description\XmlSerializerOperationBehavior.cs (2)
291
OperationFormatter.Validate(operation, attr.Style == OperationFormatStyle.
Rpc
, attr.IsEncoded);
299
this.IsRpc = (attr.Style == OperationFormatStyle.
Rpc
);
System\ServiceModel\Dispatcher\DataContractSerializerOperationFormatter.cs (2)
89
: base(description, dataContractFormatAttribute.Style == OperationFormatStyle.
Rpc
, false/*isEncoded*/)
163
string ns = (style == OperationFormatStyle.
Rpc
|| part.Namespace == null) ? string.Empty : part.Namespace;
System\ServiceModel\Dispatcher\XmlSerializerOperationFormatter.cs (2)
33
base(description, xmlSerializerFormatAttribute.Style == OperationFormatStyle.
Rpc
, xmlSerializerFormatAttribute.IsEncoded)
35
if (xmlSerializerFormatAttribute.IsEncoded && xmlSerializerFormatAttribute.Style != OperationFormatStyle.
Rpc
)
System\ServiceModel\OperationFormatStyle.cs (1)
19
x == OperationFormatStyle.
Rpc
||
System\ServiceModel\XmlSerializerFormatAttribute.cs (1)
41
Style = OperationFormatStyle.
Rpc
;
System.ServiceModel.Web (1)
System\ServiceModel\Description\WebHttpBehavior.cs (1)
1260
if (xsob != null && (xsob.XmlSerializerFormatAttribute.Style == OperationFormatStyle.
Rpc
|| xsob.XmlSerializerFormatAttribute.IsEncoded))