Javax.Net.SocketFactory Members

The members of Javax.Net.SocketFactory are listed below.

See Also: Inherited members from Java.Lang.Object

Protected Constructors

Creates a new SocketFactory instance.
A constructor used when creating managed representations of JNI objects; called by the runtime.

Public Properties

[read-only]
static
DefaultSocketFactory. Gets the default socket factory of the system which can be used to create new sockets without creating a subclass of this factory.

Protected Properties

[read-only]
override
ThresholdClassIntPtr. This API supports the Mono for Android infrastructure and is not intended to be used directly from your code.
[read-only]
override
ThresholdTypeType. This API supports the Mono for Android infrastructure and is not intended to be used directly from your code.

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.