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 ) > [readPort ](./bitburner.ns.readport.md )
## NS.readPort() method
Read data from a port.
2023-02-11 19:18:50 +01:00
**Signature:**
2022-10-21 17:16:00 +02:00
```typescript
2024-02-19 20:19:03 +01:00
readPort(portNumber: number): any;
2022-10-21 17:16:00 +02:00
```
## Parameters
| Parameter | Type | Description |
| --- | --- | --- |
2023-09-02 16:57:31 +02:00
| portNumber | number | Port to read from. Must be a positive integer. |
2022-10-21 17:16:00 +02:00
2023-02-11 19:18:50 +01:00
**Returns:**
2022-10-21 17:16:00 +02:00
2024-02-19 20:19:03 +01:00
any
2022-10-21 17:16:00 +02:00
2022-11-20 18:07:22 +01:00
The data read.
2022-10-21 17:16:00 +02:00
## Remarks
RAM cost: 0 GB
Read data from that port. A port is a serialized queue. This function will remove the first element from that queue and return it. If the queue is empty, then the string “NULL PORT DATA” will be returned.