File: System\ServiceModel\NetHttpMessageEncoding.cs
Project: ndp\cdf\src\WCF\ServiceModel\System.ServiceModel.csproj (System.ServiceModel)
// <copyright>
//   Copyright (c) Microsoft Corporation.  All rights reserved.
// </copyright>
 
namespace System.ServiceModel
{
    public enum NetHttpMessageEncoding
    {
        /// <summary>
        /// Indicates using Binary message encoder.
        /// </summary>
        Binary,
 
        /// <summary>
        /// Indicates using Text message encoder.
        /// </summary>
        Text,
 
        /// <summary>
        /// Indicates using Mtom message encoder.
        /// </summary>
        Mtom
    }
}