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:
2026-01-14 22:11:11 +01:00
parent 40a8431464
commit 3f7122d30a
350 changed files with 41444 additions and 119 deletions

48
Vendor/EmbedIO-3.5.2/HttpVerbs.cs vendored Normal file
View 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,
}
}