Skip to content

Commit

Permalink
Add OperationFormatUse.
Browse files Browse the repository at this point in the history
  • Loading branch information
shmao committed Apr 20, 2017
1 parent f3173b9 commit 2fe2c58
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -552,6 +552,11 @@ public enum OperationFormatStyle
Document = 0,
Rpc = 1,
}
public enum OperationFormatUse
{
Literal,
Encoded,
}
public partial class ProtocolException : System.ServiceModel.CommunicationException
{
public ProtocolException(string message) { }
Expand Down Expand Up @@ -623,6 +628,7 @@ public sealed partial class XmlSerializerFormatAttribute : System.Attribute
public XmlSerializerFormatAttribute() { }
public System.ServiceModel.OperationFormatStyle Style { get { return default(System.ServiceModel.OperationFormatStyle); } set { } }
public bool SupportFaults { get { return default(bool); } set { } }
public OperationFormatUse Use{ get { throw null; } set { } }
}
}
namespace System.ServiceModel.Channels
Expand Down

0 comments on commit 2fe2c58

Please sign in to comment.