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
2023-02-28 01:54:04 +01:00
readPort(portNumber: number): PortData;
2022-10-21 17:16:00 +02:00
```
## Parameters
| Parameter | Type | Description |
| --- | --- | --- |
2023-02-28 01:54:04 +01:00
| portNumber | number | |
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
[PortData ](./bitburner.portdata.md )
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.