CSharpHttpServer/SimpleHttpServer/HttpRequestType.cs
2023-11-30 17:31:19 +01:00

14 lines
162 B
C#

namespace SimpleHttpServer;
public enum HttpRequestType {
GET,
HEAD,
POST,
PUT,
DELETE,
CONNECT,
OPTIONS,
TRACE,
PATCH,
}