Class PublishOutcome
Represents the outcome of a publish operation. It contains the state of the outcome and an error if the outcome is not successful.
public class PublishOutcome
- Inheritance
-
PublishOutcome
- Inherited Members
Constructors
PublishOutcome(OutcomeState, Error?)
public PublishOutcome(OutcomeState state, Error? error)
Parameters
state
OutcomeStateerror
Error
Properties
Error
The Error, if any.
public Error? Error { get; }
Property Value
State
The OutcomeState.
public OutcomeState State { get; }