CallbackResult constructor

Represents the result of a callback operation.

public CallbackResult(bool Success, int? StatusCode, string? ErrorType, string? ErrorMessage, 
    DateTimeOffset CompletedAt)
parameter description
Success Indicates whether the callback was successful
StatusCode HTTP status code returned by the callback, if applicable
ErrorType Type of error encountered, if any (e.g., Timeout, Dns, Tls, Http5xx)
ErrorMessage Detailed error message, if any
CompletedAt Timestamp when the callback operation was completed

See Also