18 references to XmlSerializerFormatAttribute
System.ServiceModel (13)
System\ServiceModel\Administration\ContractInstanceProvider.cs (4)
205if (null != specificBehavior.XmlSerializerFormatAttribute) 207instance.SetProperty(AdministrationStrings.Style, specificBehavior.XmlSerializerFormatAttribute.Style.ToString()); 208instance.SetProperty(AdministrationStrings.Use, specificBehavior.XmlSerializerFormatAttribute.Use.ToString()); 209instance.SetProperty(AdministrationStrings.SupportFaults, specificBehavior.XmlSerializerFormatAttribute.SupportFaults.ToString());
System\ServiceModel\Description\MessageContractExporter.cs (6)
768isRpc = xmlSerializerBehavior.XmlSerializerFormatAttribute.Style == OperationFormatStyle.Rpc; 769isEncoded = xmlSerializerBehavior.XmlSerializerFormatAttribute.IsEncoded; 1042return ((XmlSerializerOperationBehavior)extension).XmlSerializerFormatAttribute.Style == OperationFormatStyle.Rpc; 1047return ((XmlSerializerOperationBehavior)extension).XmlSerializerFormatAttribute.IsEncoded; 1060result = Reflector.ReflectOperation(operation, serializerBehavior.XmlSerializerFormatAttribute); 1177return new ExtensionData(((XmlSerializerOperationBehavior)this.extension).XmlSerializerFormatAttribute);
System\ServiceModel\Description\MessageContractImporter.cs (2)
2131return operationBehavior.XmlSerializerFormatAttribute; 2136return operationBehavior.XmlSerializerFormatAttribute;
System\ServiceModel\Description\XmlSerializerOperationGenerator.cs (1)
142XmlSerializerFormatAttribute xmlSerializerFormatAttribute = (xmlSerializerOperationBehavior == null) ? new XmlSerializerFormatAttribute() : xmlSerializerOperationBehavior.XmlSerializerFormatAttribute;
System.ServiceModel.Web (5)
System\ServiceModel\Description\WebHttpBehavior.cs (5)
519xsob = new XmlSerializerOperationBehavior(od, xsob.XmlSerializerFormatAttribute, this.reflector); 1091xsob = new XmlSerializerOperationBehavior(od, xsob.XmlSerializerFormatAttribute, this.reflector); 1239return (xsob != null && xsob.XmlSerializerFormatAttribute.SupportFaults); 1260if (xsob != null && (xsob.XmlSerializerFormatAttribute.Style == OperationFormatStyle.Rpc || xsob.XmlSerializerFormatAttribute.IsEncoded))