Class EndpointCheckResult
Encapsulates the result of a check performed against an IEndpoint.
Inherited Members
Namespace: Silverback.Messaging.HealthChecks
Assembly: Silverback.Integration.dll
Syntax
public class EndpointCheckResult
Constructors
| Improve this doc View sourceEndpointCheckResult(string, bool, string?)
Initializes a new instance of the EndpointCheckResult class.
Declaration
public EndpointCheckResult(string endpointName, bool isSuccessful, string? errorMessage = null)
Parameters
Type | Name | Description |
---|---|---|
string | endpointName | The name of the checked endpoint. |
bool | isSuccessful | A value indicating whether the check was successful. |
string | errorMessage | The error message, if not successful. |
Properties
| Improve this doc View sourceEndpointName
Gets the name of the checked endpoint.
Declaration
public string EndpointName { get; }
Property Value
Type | Description |
---|---|
string |
ErrorMessage
Gets the error message, if not successful.
Declaration
public string? ErrorMessage { get; }
Property Value
Type | Description |
---|---|
string |
IsSuccessful
Gets a value indicating whether the check was successful.
Declaration
public bool IsSuccessful { get; }
Property Value
Type | Description |
---|---|
bool |