1 write to IsEncoded
System.ServiceModel (1)
System\ServiceModel\Description\MessageContractImporter.cs (1)
2156operationAttribute.IsEncoded = isEncoded;
12 references to IsEncoded
System.ServiceModel (12)
System\ServiceModel\Description\MessageContractExporter.cs (2)
769isEncoded = xmlSerializerBehavior.XmlSerializerFormatAttribute.IsEncoded; 1047return ((XmlSerializerOperationBehavior)extension).XmlSerializerFormatAttribute.IsEncoded;
System\ServiceModel\Description\MessageContractImporter.cs (2)
2149return TypeLoader.DefaultXmlSerializerFormatAttribute.IsEncoded; 2150return operationAttribute.IsEncoded;
System\ServiceModel\Description\XmlSerializerOperationBehavior.cs (2)
291OperationFormatter.Validate(operation, attr.Style == OperationFormatStyle.Rpc, attr.IsEncoded); 298this.IsEncoded = attr.IsEncoded;
System\ServiceModel\Description\XmlSerializerOperationGenerator.cs (2)
144operationGenerator.GenerateOperation(context, ref style, xmlSerializerFormatAttribute.IsEncoded, new WrappedBodyTypeGenerator(context), new Dictionary<MessagePartDescription, ICollection<CodeTypeReference>>()); 148AddKnownTypes(context.SyncMethod.CustomAttributes, xmlSerializerFormatAttribute.IsEncoded ? SoapExporter.IncludeMetadata : XmlExporter.IncludeMetadata);
System\ServiceModel\Dispatcher\XmlSerializerOperationFormatter.cs (3)
33base(description, xmlSerializerFormatAttribute.Style == OperationFormatStyle.Rpc, xmlSerializerFormatAttribute.IsEncoded) 35if (xmlSerializerFormatAttribute.IsEncoded && xmlSerializerFormatAttribute.Style != OperationFormatStyle.Rpc) 37this.isEncoded = xmlSerializerFormatAttribute.IsEncoded;
System\ServiceModel\XmlSerializerFormatAttribute.cs (1)
40if (!isStyleSet && IsEncoded)