10 references to OperationFormatUse
dotnet-svcutil-lib (10)
CodeDomFixup\NoSoapEncodingFixup.cs (1)
57
return behavior == null || behavior.XmlSerializerFormatAttribute.Use !=
OperationFormatUse
.Encoded;
FrameworkFork\System.ServiceModel\System\ServiceModel\OperationFormatUse.cs (3)
15
static public bool IsDefined(
OperationFormatUse
x)
18
x ==
OperationFormatUse
.Literal ||
19
x ==
OperationFormatUse
.Encoded ||
FrameworkFork\System.ServiceModel\System\ServiceModel\XmlSerializerFormatAttribute.cs (6)
15
private
OperationFormatUse
_use;
34
public
OperationFormatUse
Use
48
get { return _use ==
OperationFormatUse
.Encoded; }
49
set { _use = value ?
OperationFormatUse
.Encoded :
OperationFormatUse
.Literal; }
60
static internal void ValidateOperationFormatUse(
OperationFormatUse
value)