示例#1
0
 public static extern int uv_fileno(UvHandle handle, ref IntPtr socket);
示例#2
0
 public void close(UvHandle handle, uv_close_cb close_cb)
 {
     handle.Validate(closed: true);
     _uv_close(handle.InternalGetHandle(), close_cb);
 }
示例#3
0
 public static extern void uv_unref(UvHandle handle);
示例#4
0
 public void unref(UvHandle handle)
 {
     handle.Validate();
     _uv_unref(handle);
 }
示例#5
0
 public void uv_fileno(UvHandle handle, ref IntPtr socket)
 {
     handle.Validate();
     ThrowIfErrored(_uv_fileno(handle, ref socket));
 }
示例#6
0
 public static extern int uv_fileno(UvHandle handle,ref IntPtr socket);
示例#7
0
 public static extern void uv_unref(UvHandle handle);
示例#8
0
 public void close(UvHandle handle, uv_close_cb close_cb)
 {
     handle.Validate(closed: true);
     _uv_close(handle.InternalGetHandle(), close_cb);
 }
示例#9
0
 public void uv_fileno(UvHandle handle, ref IntPtr socket)
 {
     handle.Validate();
     ThrowIfErrored(_uv_fileno(handle, ref socket));
 }
示例#10
0
 public void unref(UvHandle handle)
 {
     handle.Validate();
     _uv_unref(handle);
 }