3 writes to Style
System.ServiceModel (3)
System\ServiceModel\Description\MessageContractImporter.cs (1)
2142operationAttribute.Style = style;
System\ServiceModel\Description\XmlSerializerOperationGenerator.cs (1)
146xmlSerializerFormatAttribute.Style = style;
System\ServiceModel\XmlSerializerFormatAttribute.cs (1)
41Style = OperationFormatStyle.Rpc;
11 references to Style
System.ServiceModel (10)
System\ServiceModel\Administration\ContractInstanceProvider.cs (1)
207instance.SetProperty(AdministrationStrings.Style, specificBehavior.XmlSerializerFormatAttribute.Style.ToString());
System\ServiceModel\Description\MessageContractExporter.cs (4)
768isRpc = xmlSerializerBehavior.XmlSerializerFormatAttribute.Style == OperationFormatStyle.Rpc; 1042return ((XmlSerializerOperationBehavior)extension).XmlSerializerFormatAttribute.Style == OperationFormatStyle.Rpc; 1195return xsFormatAttr.Style == otherExtensionData.xsFormatAttr.Style &&
System\ServiceModel\Description\XmlSerializerOperationBehavior.cs (2)
291OperationFormatter.Validate(operation, attr.Style == OperationFormatStyle.Rpc, attr.IsEncoded); 299this.IsRpc = (attr.Style == OperationFormatStyle.Rpc);
System\ServiceModel\Description\XmlSerializerOperationGenerator.cs (1)
143OperationFormatStyle style = xmlSerializerFormatAttribute.Style;
System\ServiceModel\Dispatcher\XmlSerializerOperationFormatter.cs (2)
33base(description, xmlSerializerFormatAttribute.Style == OperationFormatStyle.Rpc, xmlSerializerFormatAttribute.IsEncoded) 35if (xmlSerializerFormatAttribute.IsEncoded && xmlSerializerFormatAttribute.Style != OperationFormatStyle.Rpc)
System.ServiceModel.Web (1)
System\ServiceModel\Description\WebHttpBehavior.cs (1)
1260if (xsob != null && (xsob.XmlSerializerFormatAttribute.Style == OperationFormatStyle.Rpc || xsob.XmlSerializerFormatAttribute.IsEncoded))