Javax.Net.SocketFactory: Method Members

The methods of Javax.Net.SocketFactory are listed below. For a list of all members, see the SocketFactory Members list.

See Also: Inherited members from Java.Lang.Object

Public Methods

CreateSocket() : Java.Net.Socket
Creates a new socket which is not connected to any remote host.
abstract
CreateSocket(Java.Net.InetAddress, int) : Java.Net.Socket
Creates a new socket which is connected to the remote host specified by the InetAddress host.
abstract
CreateSocket(string, int) : Java.Net.Socket
Creates a new socket which is connected to the remote host specified by the parameters host and port.
abstract
CreateSocket(Java.Net.InetAddress, int, Java.Net.InetAddress, int) : Java.Net.Socket
Creates a new socket which is connected to the remote host specified by the InetAddress address.
abstract
CreateSocket(string, int, Java.Net.InetAddress, int) : Java.Net.Socket
Creates a new socket which is connected to the remote host specified by the parameters host and port.