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 ) > [tryWritePort ](./bitburner.ns.trywriteport.md )
## NS.tryWritePort() method
Attempt to write to 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
tryWritePort(portNumber: number, data: any): boolean;
2022-10-21 17:16:00 +02:00
```
## Parameters
| Parameter | Type | Description |
| --- | --- | --- |
2023-10-03 02:14:44 +02:00
| portNumber | number | Port to attempt to write to. Must be a positive integer. |
2024-02-19 20:19:03 +01:00
| data | any | Data to write, it's cloned with structuredClone(). |
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
boolean
True if the data is successfully written to the port, and false otherwise.
## Remarks
RAM cost: 0 GB
2022-11-20 18:07:22 +01:00
Attempts to write data to the specified Netscript port. If the port is full, the data will not be written. Otherwise, the data will be written normally.
2022-10-21 17:16:00 +02:00