2022-10-21 17:16:00 +02:00
|
|
|
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
|
|
|
|
|
|
[Home](./index.md) > [bitburner](./bitburner.md) > [NS](./bitburner.ns.md) > [writePort](./bitburner.ns.writeport.md)
|
|
|
|
|
|
|
|
## NS.writePort() method
|
|
|
|
|
|
|
|
Write data to a port.
|
|
|
|
|
|
|
|
<b>Signature:</b>
|
|
|
|
|
|
|
|
```typescript
|
2022-11-20 18:07:22 +01:00
|
|
|
writePort(port: number, data: string | number): PortData | null;
|
2022-10-21 17:16:00 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
## Parameters
|
|
|
|
|
|
|
|
| Parameter | Type | Description |
|
|
|
|
| --- | --- | --- |
|
|
|
|
| port | number | |
|
|
|
|
| data | string \| number | |
|
|
|
|
|
|
|
|
<b>Returns:</b>
|
|
|
|
|
2022-11-20 18:07:22 +01:00
|
|
|
[PortData](./bitburner.portdata.md) \| null
|
2022-10-21 17:16:00 +02:00
|
|
|
|
2022-11-20 18:07:22 +01:00
|
|
|
The data popped off the queue if it was full, or null if it was not full.
|
2022-10-21 17:16:00 +02:00
|
|
|
|
|
|
|
## Remarks
|
|
|
|
|
|
|
|
RAM cost: 0 GB
|
|
|
|
|
2022-11-20 18:07:22 +01:00
|
|
|
Write data to the given Netscript port.
|
2022-10-21 17:16:00 +02:00
|
|
|
|