Enum ForwarderError
- Namespace
- Yarp.ReverseProxy.Forwarder
- Assembly
- Yarp.ReverseProxy.dll
Errors reported when forwarding a request to the destination.
public enum ForwarderError
Fields
NoAvailableDestinations = 17Indicates there were no destinations remaining to proxy the request to. The configured destinations may have been excluded due to heath or other considerations.
None = 0No error.
Request = 1Failed to connect, send the request headers, or receive the response headers.
RequestBodyCanceled = 4Canceled while copying the request body.
RequestBodyClient = 5Failed reading the request body from the client.
RequestBodyDestination = 6Failed writing the request body to the destination.
RequestCanceled = 3Canceled when trying to connect, send the request headers, or receive the response headers.
RequestCreation = 18Failed while creating the request message.
RequestTimedOut = 2Timed out when trying to connect, send the request headers, or receive the response headers.
ResponseBodyCanceled = 8Canceled while copying the response body.
ResponseBodyClient = 9Failed when writing response body to the client.
ResponseBodyDestination = 10Failed when reading response body from the destination.
ResponseHeaders = 7Failed to copy response headers.
UpgradeActivityTimeout = 19An upgraded request was idle and canceled due to the activity timeout.
UpgradeRequestCanceled = 11Canceled while copying the upgraded response body.
UpgradeRequestClient = 12Failed reading the upgraded request body from the client.
UpgradeRequestDestination = 13Failed writing the upgraded request body to the destination.
UpgradeResponseCanceled = 14Canceled while copying the upgraded response body.
UpgradeResponseClient = 15Failed when writing the upgraded response body to the client.
UpgradeResponseDestination = 16Failed when reading the upgraded response body from the destination.