Class EndpointResult
Defines the result returned from all storage-related Activities.
public record EndpointResult : IEquatable<EndpointResult>
- Inheritance
-
EndpointResult
- Implements
- Derived
- Inherited Members
- Extension Methods
Constructors
EndpointResult(HttpStatusCode, string?, string?)
Defines the result returned from all storage-related Activities.
public EndpointResult(HttpStatusCode HttpStatusCode, string? RequestId, string? ResponseMessage)
Parameters
HttpStatusCodeHttpStatusCodethe HttpStatusCode
RequestIdstringthe identifier of the request
ResponseMessagestringany message associated with the request
Properties
HttpStatusCode
the HttpStatusCode
public HttpStatusCode HttpStatusCode { get; init; }
Property Value
RequestId
the identifier of the request
public string? RequestId { get; init; }
Property Value
ResponseMessage
any message associated with the request
public string? ResponseMessage { get; init; }