-
Notifications
You must be signed in to change notification settings - Fork 0
easyextensionsmodels ErrorModel
BigMakCode edited this page Aug 5, 2024
·
1 revision
Error model.
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph EasyExtensions.Models
EasyExtensions.Models.ErrorModel[[ErrorModel]]
end
Type | Name | Methods |
---|---|---|
IDictionary <string , string > |
Errors Error details. |
get, set |
int |
Status Error status code. |
get, set |
string |
Title Error title. |
get, set |
string |
TraceId Trace ID. |
get, set |
string |
Type URI of the error type. |
get, set |
Error model.
public ErrorModel()
public string Type { get; set; }
URI of the error type.
public string Title { get; set; }
Error title.
public int Status { get; set; }
Error status code.
public string TraceId { get; set; }
Trace ID.
public IDictionary<string, string> Errors { get; set; }
Error details.
Generated with ModularDoc