Skip to content

easyextensionsmodels ErrorModel

BigMakCode edited this page Aug 5, 2024 · 1 revision

ErrorModel Public class

Description

Error model.

Diagram

  flowchart LR
  classDef interfaceStyle stroke-dasharray: 5 5;
  classDef abstractStyle stroke-width:4px
  subgraph EasyExtensions.Models
  EasyExtensions.Models.ErrorModel[[ErrorModel]]
  end
Loading

Members

Properties

Public properties

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

Details

Summary

Error model.

Constructors

ErrorModel

public ErrorModel()

Properties

Type

public string Type { get; set; }
Summary

URI of the error type.

Title

public string Title { get; set; }
Summary

Error title.

Status

public int Status { get; set; }
Summary

Error status code.

TraceId

public string TraceId { get; set; }
Summary

Trace ID.

Errors

public IDictionary<string, string> Errors { get; set; }
Summary

Error details.

Generated with ModularDoc

Clone this wiki locally