System.ServiceModel.HttpBindingBase
namespace System.ServiceModel
{
public abstract class HttpBindingBase
{
public bool AllowCookies { get; set; }
public bool BypassProxyOnLocal { get; set; }
public int MaxBufferSize { get; set; }
public long MaxBufferPoolSize { get; set; }
public long MaxReceivedMessageSize { get; set; }
public Uri ProxyAddress { get; set; }
public XmlDictionaryReaderQuotas ReaderQuotas { get; set; }
public EnvelopeVersion EnvelopeVersion { get; }
public Encoding TextEncoding { get; set; }
public TransferMode TransferMode { get; set; }
public bool UseDefaultWebProxy { get; set; }
}
}