BindIPEndPoint Delegate
Assembly: System (in system.dll)
'Declaration Public Delegate Function BindIPEndPoint ( _ servicePoint As ServicePoint, _ remoteEndPoint As IPEndPoint, _ retryCount As Integer _ ) As IPEndPoint 'Usage Dim instance As New BindIPEndPoint(AddressOf HandlerMethod)
/** @delegate */ public delegate IPEndPoint BindIPEndPoint ( ServicePoint servicePoint, IPEndPoint remoteEndPoint, int retryCount )
JScript supports the use of delegates, but not the declaration of new ones.
Parameters
- servicePoint
The ServicePoint associated with the connection to be created.
- remoteEndPoint
The remote IPEndPoint that specifies the remote host.
- retryCount
The number of times this delegate was called for a specified connection.
Return Value
The local IPEndPoint to which the ServicePoint is bound.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 Framework cannot bind the returned IPEndPoint to the ServicePoint after 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 a null reference (Nothing in Visual Basic). If you want to abort the connection, the delegate must throw an exception.
Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.