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