10 lines
451 B
C#
10 lines
451 B
C#
namespace EmbedIO.Routing
|
|
{
|
|
/// <summary>
|
|
/// Base class for callbacks used to handle routed requests synchronously.
|
|
/// </summary>
|
|
/// <param name="context">An <see cref="IHttpContext" /> interface representing the context of the request.</param>
|
|
/// <param name="route">The matched route.</param>
|
|
/// <seealso cref="RouteMatch"/>
|
|
public delegate void SyncRouteHandlerCallback(IHttpContext context, RouteMatch route);
|
|
} |