CSharpHttpServer/SimpleHttpServer/Types/HttpRequestType.cs

14 lines
168 B
C#

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