System.ServiceModel.Channels.HttpTransportBindingElement
namespace System.ServiceModel.Channels
{
public class HttpTransportBindingElement
{
public bool AllowCookies { get; set; }
public AuthenticationSchemes AuthenticationScheme { get; set; }
public bool BypassProxyOnLocal { get; set; }
public bool DecompressionEnabled { get; set; }
public ExtendedProtectionPolicy ExtendedProtectionPolicy { get; set; }
public bool KeepAliveEnabled { get; set; }
public int MaxBufferSize { get; set; }
public IWebProxy Proxy { get; set; }
public Uri ProxyAddress { get; set; }
public AuthenticationSchemes ProxyAuthenticationScheme { get; set; }
public TransferMode TransferMode { get; set; }
public WebSocketTransportSettings WebSocketSettings { get; set; }
public bool UseDefaultWebProxy { get; set; }
public HttpTransportBindingElement();
protected HttpTransportBindingElement(HttpTransportBindingElement elementToBeCloned);
}
}