14 lines
162 B
C#
14 lines
162 B
C#
namespace SimpleHttpServer;
|
|
|
|
public enum HttpRequestType {
|
|
GET,
|
|
HEAD,
|
|
POST,
|
|
PUT,
|
|
DELETE,
|
|
CONNECT,
|
|
OPTIONS,
|
|
TRACE,
|
|
PATCH,
|
|
}
|