21 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)] 716[XmlSerializerFormat(Style = OperationFormatStyle.Rpc, Use = OperationFormatUse.Encoded)] 745[XmlSerializerFormat(Style = OperationFormatStyle.Rpc, Use = OperationFormatUse.Literal)] 774[XmlSerializerFormat(Style = OperationFormatStyle.Document, Use = OperationFormatUse.Literal)] 803[XmlSerializerFormat(Style = OperationFormatStyle.Rpc, Use = OperationFormatUse.Encoded)] 814[XmlSerializerFormat(Style = OperationFormatStyle.Rpc, Use = OperationFormatUse.Literal)] 825[XmlSerializerFormat(Style = OperationFormatStyle.Document, Use = OperationFormatUse.Literal)] 839[XmlSerializerFormat(Style = OperationFormatStyle.Rpc, Use = OperationFormatUse.Encoded)]
System.ServiceModel (1)
netstandard.cs (1)
199[assembly: TypeForwardedTo(typeof(OperationFormatUse))]
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)