Javax.Net.ServerSocketFactory Members

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

See Also: Inherited members from Java.Lang.Object

Protected Constructors

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

Public Properties

[read-only]
static
DefaultServerSocketFactory. Gets the default server socket factory of the system which can be used to create new server 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

CreateServerSocket() : Java.Net.ServerSocket
Creates a new server socket which is not bound to any local address.
abstract
CreateServerSocket(int) : Java.Net.ServerSocket
Creates a new server socket which is bound to the given port with a maximum backlog of 50 unaccepted connections.
abstract
CreateServerSocket(int, int) : Java.Net.ServerSocket
Creates a new server socket which is bound to the given port and configures its maximum of queued connections.
abstract
CreateServerSocket(int, int, Java.Net.InetAddress) : Java.Net.ServerSocket
Creates a new server socket which is bound to the given address on the specified port and configures its maximum of queued connections.