20 references to OperationFormatUse
ScenarioTests.Common.Tests (11)
ServiceInterfaces.cs (11)
153[XmlSerializerFormat(Style = OperationFormatStyle.Rpc, SupportFaults = true, Use = OperationFormatUse.Encoded)] 157[XmlSerializerFormat(Style = OperationFormatStyle.Rpc, SupportFaults = true, Use = OperationFormatUse.Encoded)] 161[XmlSerializerFormat(Style = OperationFormatStyle.Rpc, SupportFaults = true, Use = OperationFormatUse.Encoded)] 167[XmlSerializerFormat(Style = OperationFormatStyle.Rpc, SupportFaults = true, Use = OperationFormatUse.Encoded)] 703[XmlSerializerFormat(Style = OperationFormatStyle.Rpc, Use = OperationFormatUse.Encoded)] 732[XmlSerializerFormat(Style = OperationFormatStyle.Rpc, Use = OperationFormatUse.Literal)] 761[XmlSerializerFormat(Style = OperationFormatStyle.Document, Use = OperationFormatUse.Literal)] 790[XmlSerializerFormat(Style = OperationFormatStyle.Rpc, Use = OperationFormatUse.Encoded)] 801[XmlSerializerFormat(Style = OperationFormatStyle.Rpc, Use = OperationFormatUse.Literal)] 812[XmlSerializerFormat(Style = OperationFormatStyle.Document, Use = OperationFormatUse.Literal)] 826[XmlSerializerFormat(Style = OperationFormatStyle.Rpc, Use = OperationFormatUse.Encoded)]
System.ServiceModel.Primitives (9)
System\ServiceModel\OperationFormatUse.cs (3)
15static public bool IsDefined(OperationFormatUse x) 18x == OperationFormatUse.Literal || 19x == OperationFormatUse.Encoded ||
System\ServiceModel\XmlSerializerFormatAttribute.cs (6)
13private OperationFormatUse _use; 28public OperationFormatUse Use 44get { return _use == OperationFormatUse.Encoded; } 45set { _use = value ? OperationFormatUse.Encoded : OperationFormatUse.Literal; } 56internal static void ValidateOperationFormatUse(OperationFormatUse value)