Mono.Unix.UnixEndPoint Class
A System.Net.EndPoint implementation for UNIX sockets as network addresses.

See Also: UnixEndPoint Members

Syntax

public class UnixEndPoint : System.Net.EndPoint

Remarks

C# Example

try
{
	UnixEndPoint endPoint = new UnixEndPoint (socketName);
	socket.Connect (endPoint);
	stream = new NetworkStream (socket, true);
	return true;
}
catch (Exception ex)
{
	baseException = ex;
	return false;
}

Requirements

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