See Also: UnixEndPoint Members
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;
}