Got at least one data fetching method working; turns out, we can't use a patched LogicStack to get the data
This commit is contained in:
48
Vendor/EmbedIO-3.5.2/HttpVerbs.cs
vendored
Normal file
48
Vendor/EmbedIO-3.5.2/HttpVerbs.cs
vendored
Normal file
@@ -0,0 +1,48 @@
|
||||
namespace EmbedIO
|
||||
{
|
||||
/// <summary>
|
||||
/// Enumerates the different HTTP Verbs.
|
||||
/// </summary>
|
||||
public enum HttpVerbs
|
||||
{
|
||||
/// <summary>
|
||||
/// Wildcard Method
|
||||
/// </summary>
|
||||
Any,
|
||||
|
||||
/// <summary>
|
||||
/// DELETE Method
|
||||
/// </summary>
|
||||
Delete,
|
||||
|
||||
/// <summary>
|
||||
/// GET Method
|
||||
/// </summary>
|
||||
Get,
|
||||
|
||||
/// <summary>
|
||||
/// HEAD method
|
||||
/// </summary>
|
||||
Head,
|
||||
|
||||
/// <summary>
|
||||
/// OPTIONS method
|
||||
/// </summary>
|
||||
Options,
|
||||
|
||||
/// <summary>
|
||||
/// PATCH method
|
||||
/// </summary>
|
||||
Patch,
|
||||
|
||||
/// <summary>
|
||||
/// POST method
|
||||
/// </summary>
|
||||
Post,
|
||||
|
||||
/// <summary>
|
||||
/// PUT method
|
||||
/// </summary>
|
||||
Put,
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user