BindIPEndPoint Delegate
Represents the method that specifies a local Internet Protocol address and port number for a ServicePoint.
Namespace: System.Net
Assembly: System (in System.dll)
public delegate IPEndPoint BindIPEndPoint( ServicePoint servicePoint, IPEndPoint remoteEndPoint, int retryCount )
Parameters
- servicePoint
- Type: System.Net.ServicePoint
The ServicePoint associated with the connection to be created.
- remoteEndPoint
- Type: System.Net.IPEndPoint
The remote IPEndPoint that specifies the remote host.
- retryCount
- Type: System.Int32
The number of times this delegate was called for a specified connection.
| Exception | Condition |
|---|---|
| System.OverflowException | retryCount is equal to Int32.MaxValue |
Specify that the BindIPEndPoint delegate is used by a ServicePoint by setting the ServicePoint.BindIPEndPointDelegate property with the delegate as an argument. This delegate should specify a local IP address and port number in the returned IPEndPoint.
If the .NET Framework cannot bind the returned IPEndPoint to the ServicePoint after Int32.MaxValue attempts, an OverflowException is thrown.
If you want the delegate to give the service point control of the connection binding, the delegate should return null. If you want to abort the connection, the delegate must throw an exception.
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.