Class WriteOutcome<T>.Accepted
Request accepted for async processing — maps to 202 Accepted with a status body.
public sealed record WriteOutcome<T>.Accepted : WriteOutcome<T>, IEquatable<WriteOutcome<T>>, IEquatable<WriteOutcome<T>.Accepted>
- Inheritance
-
WriteOutcome<T>WriteOutcome<T>.Accepted
- Implements
- Inherited Members
- Extension Methods
Constructors
Accepted(T, string?, RetryAfterValue?)
Request accepted for async processing — maps to 202 Accepted with a status body.
public Accepted(T StatusBody, string? MonitorUri = null, RetryAfterValue? RetryAfter = null)
Parameters
StatusBodyTMonitorUristringRetryAfterRetryAfterValue
Properties
MonitorUri
public string? MonitorUri { get; init; }
Property Value
RetryAfter
public RetryAfterValue? RetryAfter { get; init; }
Property Value
StatusBody
public T StatusBody { get; init; }
Property Value
- T