Mono Class Library: Mono.Unix NamespaceMono.Unix.AbstractUnixEndPoint Class |
See Also: AbstractUnixEndPoint Members
System.Net.EndPoint
Mono.Unix.AbstractUnixEndPoint
|
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.
[Edit]
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; }
Namespace: Mono.Unix
Assembly: Mono.Posix (in Mono.Posix.dll)
Assembly Versions: 1.0.5000.0, 2.0.0.0