public void shutdown(UvShutdownReq req, UvStreamHandle handle, uv_shutdown_cb cb) { req.Validate(); handle.Validate(); Check(_uv_shutdown(req, handle, cb)); }
internal static extern int uv_shutdown(IntPtr req, IntPtr handle, uv_shutdown_cb cb);
public static extern int uv_shutdown(UvShutdownReq req,UvStreamHandle handle,uv_shutdown_cb cb);
public static extern int uv_shutdown(UvShutdownReq req, UvStreamHandle handle, uv_shutdown_cb cb);
protected override void InitDelegates() { base.InitDelegates(); _allocDelegate = new uv_alloc_cb(this.OnAlloc); _readDelegate = new uv_read_cb(this.OnRead); _writeDelegate = new uv_write_cb(this.OnWrite); _shutdownDelegate = new uv_shutdown_cb(this.OnShutdown); }
public void shutdown(UvShutdownReq req, UvStreamHandle handle, uv_shutdown_cb cb) { req.Validate(); handle.Validate(); ThrowIfErrored(_uv_shutdown(req, handle, cb)); }