2021-10-30 18:34:14 +02:00
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
2021-11-12 21:42:57 +01:00
[Home ](./index.md ) > [bitburner ](./bitburner.md ) > [NS ](./bitburner.ns.md ) > [tryWritePort ](./bitburner.ns.trywriteport.md )
2021-10-30 18:34:14 +02:00
2021-11-12 21:42:57 +01:00
## NS.tryWritePort() method
2021-10-30 18:34:14 +02:00
2021-11-03 23:16:10 +01:00
Attempt to write to a port.
2021-10-30 18:34:14 +02:00
< b > Signature:< / b >
```typescript
2022-03-17 21:50:46 +01:00
tryWritePort(port: number, data: string | number): Promise< boolean > ;
2021-10-30 18:34:14 +02:00
```
## Parameters
| Parameter | Type | Description |
| --- | --- | --- |
2021-11-03 05:33:14 +01:00
| port | number | Port or text file that will be written to. |
2022-03-17 21:50:46 +01:00
| data | string \| number | Data to write. |
2021-10-30 18:34:14 +02:00
< b > Returns:< / b >
2021-11-04 01:19:52 +01:00
Promise< boolean>
2021-10-30 18:34:14 +02:00
True if the data is successfully written to the port, and false otherwise.
## Remarks
2021-11-12 21:42:57 +01:00
RAM cost: 0 GB
2021-10-30 18:34:14 +02:00
2021-11-03 23:16:10 +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.