Java.Nio.Channels.ServerSocketChannel Class
A ServerSocketChannel is a partial abstraction of a selectable, stream-oriented listening socket.

See Also: ServerSocketChannel Members

Syntax

[Android.Runtime.Register("java/nio/channels/ServerSocketChannel", DoNotGenerateAcw=true)]
public abstract class ServerSocketChannel : Java.Nio.Channels.Spi.AbstractSelectableChannel

Remarks

A ServerSocketChannel is a partial abstraction of a selectable, stream-oriented listening socket. Binding and manipulation of socket options can only be done through the associated Java.Net.ServerSocket object, returned by calling socket(). ServerSocketChannels can not be constructed for an already existing server-socket, nor can a Java.Net.SocketImpl be assigned.

A server-socket channel is open but not bound when created by the open() method. Calling accept before bound will cause a Java.Nio.Channels.NotYetBoundException. It can be bound by calling the bind method of a related ServerSocket instance.

[Android Documentation]

Requirements

Namespace: Java.Nio.Channels
Assembly: Mono.Android (in Mono.Android.dll)
Assembly Versions: 0.0.0.0
Since: Added in API level 1