예제 #1
0
파일: Unix.cs 프로젝트: sillsdev/dbus-sharp
 public UnixStream(UnixSocket usock)
 {
     this._usock = usock;
 }
예제 #2
0
 public UnixStream(UnixSocket usock)
 {
     this.usock = usock;
 }
예제 #3
0
파일: Unix.cs 프로젝트: sillsdev/dbus-sharp
 public UnixStream(int fd)
 {
     this._usock = new UnixSocket(fd);
 }
예제 #4
0
 public UnixStream(int fd)
 {
     this.usock = new UnixSocket (fd);
 }