HeaderOperation enum

This describes the possible operations for a "modifyHeaders" rule.

Inheritance
Available extensions

Values

append → const HeaderOperation

Adds a new entry for the specified header. This operation is not supported for request headers.

const HeaderOperation('append')
set → const HeaderOperation

Sets a new value for the specified header, removing any existing headers with the same name.

const HeaderOperation('set')
remove → const HeaderOperation

Removes all entries for the specified header.

const HeaderOperation('remove')

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
toJS String
no setter
value String
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

fromJS(String value) HeaderOperation

Constants

values → const List<HeaderOperation>
A constant List of the values in this enum, in order of their declaration.