ln.http/ln.http/HttpMethod.cs

13 lines
222 B
C#

using System;
namespace ln.http
{
[Flags]
public enum HttpMethod {
NONE = 0,
HEAD, GET, POST, PUT, PATCH, DELETE, CONNECT, OPTIONS, TRACE, PROPFIND, MKCOL, LOCK, UNLOCK,
ANY = -1
}
}