Mono Class Library: Mono.Unix Namespace

Mono.Unix.AbstractUnixEndPoint Class

A System.Net.EndPoint implementation for abstract UNIX sockets as network addresses. [Edit]

See Also: AbstractUnixEndPoint Members

System.Net.EndPoint
     Mono.Unix.AbstractUnixEndPoint

public class AbstractUnixEndPoint : System.Net.EndPoint

Remarks

This class implements abstract UNIX domain sockets as found in the Linux operating system. Unlike Mono.Unix.UnixEndPoint, the path used to create this type of endpoint need not be a filename in the filesystem as it is just a unique string in the abstract namespace.

C# Example
try
{
	AbstractUnixEndPoint endPoint = new AbstractUnixEndPoint (socketName);
	socket.Connect (endPoint);
	stream = new NetworkStream (socket, true);
	return true;
}
catch (Exception ex)
{
	baseException = ex;
	return false;
}
[Edit]

Requirements

Namespace: Mono.Unix
Assembly: Mono.Posix (in Mono.Posix.dll)
Assembly Versions: 1.0.5000.0, 2.0.0.0