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

See Also: UnixEndPoint Members

Syntax

[System.Obsolete("Use Mono.Unix.UnixEndPoint")]
public class UnixEndPoint : System.Net.EndPoint

See Also

Mono.Unix.UnixEndPoint

Remarks

This type is obsolete. Please use Mono.Unix.UnixEndPoint instead.

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.Posix
Assembly: Mono.Posix (in Mono.Posix.dll)
Assembly Versions: 1.0.5000.0, 2.0.0.0, 4.0.0.0