File: System\ServiceModel\WSMessageEncoding.cs
Web Access
Project: src\src\System.ServiceModel.Http\src\System.ServiceModel.Http.csproj (System.ServiceModel.Http)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
 
 
using System.ServiceModel.Channels;
 
namespace System.ServiceModel
{
    public enum WSMessageEncoding
    {
        Text = 0,
        Mtom
    }
 
    internal static class WSMessageEncodingHelper
    {
        internal static bool IsDefined(WSMessageEncoding value)
        {
            return
               value == WSMessageEncoding.Text
               || value == WSMessageEncoding.Mtom;
        }
 
        internal static void SyncUpEncodingBindingElementProperties(TextMessageEncodingBindingElement textEncoding, MtomMessageEncodingBindingElement mtomEncoding)
        {
            // textEncoding provides the backing store for ReaderQuotas and WriteEncoding,
            // we must ensure same values propogate to mtomEncoding
            textEncoding.ReaderQuotas.CopyTo(mtomEncoding.ReaderQuotas);
            mtomEncoding.WriteEncoding = textEncoding.WriteEncoding;
        }
    }
}