master
Harald Wolff 2019-04-16 18:22:59 +02:00
parent 3603c530a5
commit d1da28f7dc
1 changed files with 3 additions and 0 deletions

View File

@ -8,6 +8,9 @@ namespace ln.http
static Dictionary<int, string> statusMessages = new Dictionary<int, string>()
{
{ 200, "Ok" },
{ 201, "Created" },
{ 202, "Accepted" },
{ 204, "No Content" },
{ 403, "Access denied" },
{ 404, "Not Found" },
{ 500, "Internal Error" }