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