namespace EmbedIO
{
///
/// Enumerates the different HTTP Verbs.
///
public enum HttpVerbs
{
///
/// Wildcard Method
///
Any,
///
/// DELETE Method
///
Delete,
///
/// GET Method
///
Get,
///
/// HEAD method
///
Head,
///
/// OPTIONS method
///
Options,
///
/// PATCH method
///
Patch,
///
/// POST method
///
Post,
///
/// PUT method
///
Put,
}
}