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)
15
static public bool IsDefined(
OperationFormatUse
x)
18
x ==
OperationFormatUse
.Literal ||
19
x ==
OperationFormatUse
.Encoded ||
System\ServiceModel\XmlSerializerFormatAttribute.cs (6)
13
private
OperationFormatUse
_use;
28
public
OperationFormatUse
Use
44
get { return _use ==
OperationFormatUse
.Encoded; }
45
set { _use = value ?
OperationFormatUse
.Encoded :
OperationFormatUse
.Literal; }
56
internal static void ValidateOperationFormatUse(
OperationFormatUse
value)