Skip to main content
Socket.prototype.disconnect - node__dgram.d.ts - Node documentation
method Socket.prototype.disconnect

Usage in Deno

```typescript import { Socket } from "node:node__dgram.d.ts"; ```
Socket.prototype.disconnect(): void
A synchronous function that disassociates a connected `dgram.Socket` from its remote address. Trying to call `disconnect()` on an unbound or already disconnected socket will result in an `ERR_SOCKET_DGRAM_NOT_CONNECTED` exception.

Return Type

void