bitburner-src/markdown/bitburner.ns.trywriteport.md

34 lines
863 B
Markdown
Raw Normal View History

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