Table of Contents

Class EndpointResult

Namespace
Songhay.Models
Assembly
SonghayCore.dll

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

HttpStatusCode HttpStatusCode

the HttpStatusCode

RequestId string

the identifier of the request

ResponseMessage string

any message associated with the request

Properties

HttpStatusCode

public HttpStatusCode HttpStatusCode { get; init; }

Property Value

HttpStatusCode

RequestId

the identifier of the request

public string? RequestId { get; init; }

Property Value

string

ResponseMessage

any message associated with the request

public string? ResponseMessage { get; init; }

Property Value

string