HeaderOperation enum
This describes the possible operations for a "modifyHeaders" rule.
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
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.