11 lines
411 B
C#
11 lines
411 B
C#
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);
|
|
} |