System.Net.ServicePoint
namespace System.Net
{
public class ServicePoint
{
public Uri Address { get; }
public BindIPEndPoint BindIPEndPointDelegate { get; set; }
public X509Certificate Certificate { get; }
public X509Certificate ClientCertificate { get; }
public int ConnectionLeaseTimeout { get; set; }
public int ConnectionLimit { get; set; }
public string ConnectionName { get; }
public int CurrentConnections { get; }
public bool Expect100Continue { get; set; }
public DateTime IdleSince { get; }
public int MaxIdleTime { get; set; }
public virtual Version ProtocolVersion { get; }
public int ReceiveBufferSize { get; set; }
public bool SupportsPipelining { get; }
public bool UseNagleAlgorithm { get; set; }
public bool CloseConnectionGroup(string connectionGroupName);
public void SetTcpKeepAlive(bool enabled, int keepAliveTime, int keepAliveInterval);
}
}