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