Dart.Mail Namespace > IPEndPoint Class > IPEndPoint Constructor : IPEndPoint Constructor(String,AddressFamily,Int32,Int32) |
Public Function New( _ ByVal hostNameOrAddress As String, _ ByVal addressFamily As AddressFamily, _ ByVal port As Integer, _ ByVal range As Integer _ )
Dim hostNameOrAddress As String Dim addressFamily As AddressFamily Dim port As Integer Dim range As Integer Dim instance As New IPEndPoint(hostNameOrAddress, addressFamily, port, range)
public IPEndPoint( string hostNameOrAddress, AddressFamily addressFamily, int port, int range )
public: IPEndPoint( string* hostNameOrAddress, AddressFamily addressFamily, int port, int range )
public: IPEndPoint( String^ hostNameOrAddress, AddressFamily addressFamily, int port, int range )
The socket will try to bind to the specified port. Upon failure, it will try with each successive port up to (port + range), until successful. An Exception is raised if all binding attempts fail.
The hostNameOrAddress parameter is limited to 126 characters in pre-4.0 versions of the .NET Framework, and 255 characters in versions 4.0 and higher.