Condition class
A container for describing a condition that must be met for the specified
redirect to apply. For example, 1. If request is for pages in the
/docs
folder, redirect to the /documents
folder.
2. If request results in HTTP error 4xx, redirect request to another host
where you might process the error.
Constructors
- Condition({String? httpErrorCodeReturnedEquals, String? keyPrefixEquals})
- Condition.fromXml(XmlElement elem)
-
factory
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- httpErrorCodeReturnedEquals → String?
-
The HTTP error code when the redirect is applied. In the event of an error,
if the error code equals this value, then the specified redirect is applied.
Required when parent element
Condition
is specified and siblingKeyPrefixEquals
is not specified. If both are specified, then both must be true for the redirect to be applied.final - keyPrefixEquals → String?
-
The object key name prefix when the redirect is applied. For example, to
redirect requests for
ExamplePage.html
, the key prefix will beExamplePage.html
. To redirect request for all pages with the prefixdocs/
, the key prefix will be/docs
, which identifies all objects in thedocs/
folder. Required when the parent elementCondition
is specified and siblingHttpErrorCodeReturnedEquals
is not specified. If both conditions are specified, both must be true for the redirect to be applied.final - runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
-
toXml(
String elemName, {List< XmlAttribute> ? attributes}) → XmlElement
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited