Show / Hide Table of Contents

Struct DestinationProbingResult

Result of a destination's active health probing.

Inherited Members
ValueType.Equals(Object)
ValueType.GetHashCode()
ValueType.ToString()
Object.Equals(Object, Object)
Object.GetType()
Object.ReferenceEquals(Object, Object)
Namespace: Yarp.ReverseProxy.Health
Assembly: Yarp.ReverseProxy.dll
Syntax
public readonly struct DestinationProbingResult

Constructors

| Improve this Doc View Source

DestinationProbingResult(DestinationState, HttpResponseMessage, Exception)

Declaration
public DestinationProbingResult(DestinationState destination, HttpResponseMessage response, Exception exception)
Parameters
Type Name Description
DestinationState destination
HttpResponseMessage response
Exception exception

Properties

| Improve this Doc View Source

Destination

Probed destination.

Declaration
public readonly DestinationState Destination { get; }
Property Value
Type Description
DestinationState
| Improve this Doc View Source

Exception

Exception thrown during probing. It is null in case of a success.

Declaration
public readonly Exception Exception { get; }
Property Value
Type Description
Exception
| Improve this Doc View Source

Response

Response recieved. It can be null in case of a failure.

Declaration
public readonly HttpResponseMessage Response { get; }
Property Value
Type Description
HttpResponseMessage
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX