delete method
The delete()
method of the Headers
interface deletes a header from the current Headers
object.
This method throws a TypeError
for the following reasons:
- The value of the name parameter is not the name of an HTTP header.
- The value of is
immutable
.
For security reasons, some headers can only be controlled by the user agent. These headers include the and .
Implementation
external void delete(String name);