AcceptedRunResponse
AgentPrism.AspNetCore.dll202 Accepted response for a queued run.
public sealed record AcceptedRunResponse : IEquatable<AcceptedRunResponse>Inheritance
Section titled “Inheritance”Implements
Section titled “Implements”IEquatable<AcceptedRunResponse>
Inherited Members
Section titled “Inherited Members”object.GetType(), object.ToString(), object.Equals(object?), object.Equals(object?, object?), object.ReferenceEquals(object?, object?), object.GetHashCode()
Remarks
Section titled “Remarks”Returned for a run started with the Prefer: respond-async header.
The same information is also carried in the Location header; the
body spares the client from having to also construct an event stream
address (AcceptedRunResponse.EventsLocation).
Constructors
Section titled “Constructors”AcceptedRunResponse()
Section titled “ AcceptedRunResponse()”public AcceptedRunResponse()Properties
Section titled “Properties”EventsLocation
Section titled “ EventsLocation”Address of the event stream.
public required string EventsLocation { get; init; }Property Value
Section titled “Property Value”Identifier of the queue record carrying the work.
public required Guid JobId { get; init; }Property Value
Section titled “Property Value”Location
Section titled “ Location”Address of the run record. Same as the Location header.
public required string Location { get; init; }Property Value
Section titled “Property Value”Run identifier.
public required Guid RunId { get; init; }Property Value
Section titled “Property Value”Methods
Section titled “Methods”Equals(object?)
Section titled “ Equals(object?)”public override bool Equals(object? obj)Parameters
Section titled “Parameters”obj object?
Returns
Section titled “Returns”Equals(AcceptedRunResponse?)
Section titled “ Equals(AcceptedRunResponse?)”public bool Equals(AcceptedRunResponse? other)Parameters
Section titled “Parameters”other AcceptedRunResponse?
Returns
Section titled “Returns”GetHashCode()
Section titled “ GetHashCode()”public override int GetHashCode()Returns
Section titled “Returns”ToString()
Section titled “ ToString()”public override string ToString()Returns
Section titled “Returns”Operators
Section titled “Operators”operator ==(AcceptedRunResponse?, AcceptedRunResponse?)
Section titled “ operator ==(AcceptedRunResponse?, AcceptedRunResponse?)”public static bool operator ==(AcceptedRunResponse? left, AcceptedRunResponse? right)Parameters
Section titled “Parameters”left AcceptedRunResponse?
right AcceptedRunResponse?
Returns
Section titled “Returns”operator !=(AcceptedRunResponse?, AcceptedRunResponse?)
Section titled “ operator !=(AcceptedRunResponse?, AcceptedRunResponse?)”public static bool operator !=(AcceptedRunResponse? left, AcceptedRunResponse? right)Parameters
Section titled “Parameters”left AcceptedRunResponse?
right AcceptedRunResponse?