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:
11
Vendor/EmbedIO-3.5.2/RequestHandlerCallback.cs
vendored
Normal file
11
Vendor/EmbedIO-3.5.2/RequestHandlerCallback.cs
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace EmbedIO
|
||||
{
|
||||
/// <summary>
|
||||
/// A callback used to handle a request.
|
||||
/// </summary>
|
||||
/// <param name="context">An <see cref="IHttpContext"/> interface representing the context of the request.</param>
|
||||
/// <returns>A <see cref="Task"/> representing the ongoing operation.</returns>
|
||||
public delegate Task RequestHandlerCallback(IHttpContext context);
|
||||
}
|
||||
Reference in New Issue
Block a user