//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
namespace System.ServiceModel.Channels
{
using System.Net.Http;
///
/// A binding parameter that can be used with the HTTP Transport to
/// specify the setting for HttpMessage support.
///
public sealed class HttpMessageSettings : IEquatable
{
///
/// Gets or sets a value indicating whether the HTTP transport should
/// support and
/// instances.
///
public bool HttpMessagesSupported { get; set; }
public bool Equals(HttpMessageSettings other)
{
return other == null ?
false :
other.HttpMessagesSupported == this.HttpMessagesSupported;
}
}
}