Class ErrorStatus
The body that will be returned for any failing request. We are using the RFC 7807 Error Format.
Inherited Members
Namespace: Unity.Services.Lobbies.Models
Assembly: solution.dll
Syntax
[Preserve]
public class ErrorStatus
Constructors
| Name | Description |
|---|---|
| ErrorStatus(string, int, string, string, int, List<Detail>) | The body that will be returned for any failing request. We are using the RFC 7807 Error Format. |
Properties
| Name | Description |
|---|---|
| Code | An integer in the range 16000-16999 that uniquely identifies an error type. This can be used to programatically identify the type of error. |
| Detail | A human-readable explanation specific to this occurrence of the problem. |
| Details | A list of additional details about specific errors. |
| Status | The HTTP status code of the response. |
| Title | A short, human-readable summary of the problem type. It SHOULD NOT change from occurrence to occurrence of the problem, except for purposes of localization. |
| Type | A URI that identifies the problem type and should provide documentation for the problem. |