PipelineResult
public class PipelineResult
Namespace
Properties
Data
Gets the PipelineResult data.
public object Data { get; }
Exception
Gets the exception associated with an unsuccessful PipelineResult.
public Exception Exception { get; }
Success
Gets a value indicating whether this PipelineResult
was successful.
public bool Success { get; }
Operators
PipelineResult Implicit
Implicitly operator to check if the PipelineResult was successful without having to access the 'success' property
public static implicit operator bool(PipelineResult a)
Parameters
Parameter | Description |
---|---|
a
|
|