SerialPort: forget() method
Limited availability
This feature is not Baseline because it does not work in some of the most widely-used browsers.
Secure context: This feature is available only insecure contexts (HTTPS), in some or allsupporting browsers.
Experimental:This is anexperimental technology
Check theBrowser compatibility table carefully before using this in production.
Note: This feature is available inDedicated Web Workers.
TheSerialPort.forget() method of theSerialPort interface returns aPromise that resolves when access to the serial port is revoked.
In this article
Description
A website can clean up permissions to access a serial port it is no longer interested in retaining by callingSerialPort.forget(). Calling this "forgets" the device, resetting any previously-set permissions so the calling site can no longer communicate with the port.
For example, for an educational web application used on a shared computer with many devices, a large number of accumulated user-generated permissions creates a poor user experience.
Syntax
forget()Parameters
None.
Return value
APromise that resolves withundefined once the connection is revoked.
Specifications
| Specification |
|---|
| Web Serial API> # dom-serialport-forget> |