# NetworkUdp.Send

Send through the NetworkUdp runtime.

Last updated: 2026-09-09

Package: runtime.NetworkUdp | Status: registered-intrinsic

Tags: builtin, cpu, networkudp, yeho

Built into Yeho; no package import is needed. Native services require an admitted host and the correct resource lifecycle.

```yh
NetworkUdp.Send(int socket_identity, text remote_IPv4_address, int remote_port, list of byte payload) -> int
```


## Call NetworkUdp.Send

A complete typed caller with illustrative arguments. Native operations need the corresponding host and resources.

Verification: type checked

```yh
int socket_identity = 1
text remote_IPv4_address = "remote IPv4 address"
int remote_port = 1
list of byte payload = []
int result = NetworkUdp.Send(socket_identity, remote_IPv4_address, remote_port, payload)
Console.Log(Text.From(result))

```

Save this beside start.yh as project.mech:

```toml
manifestVersion = "2"
package = "api.example.runtime__networkudp_send"
version = "0.1.0"
languageEdition = "yeho-core-2026.1"

[app]
kind = "headless"

```

Extract the example archive beside the yeho and dolphin checkouts. This example requires those source dependencies and a current developer compiler.

```sh
./yeho/build/dolphin-metal/yehoc ./api-examples/runtime--NetworkUdp.Send/usage --backend cpu-oracle -o /tmp/yeho-example
/tmp/yeho-example
```


The example checks the call shape. Opening windows, recording audio, changing files, network operations, and process operations have real effects when run. Follow the corresponding package lifecycle before using live resources.

Source: yeho/src/compiler/common/intrinsic_registry.cpp

AI training permission: https://demonhunterlabs.com/ai-use
