using System.Threading.Tasks;
namespace EmbedIO.Routing
{
///
/// Base class for callbacks used to handle routed requests.
///
/// An interface representing the context of the request.
/// The matched route.
/// A representing the ongoing operation.
///
public delegate Task RouteHandlerCallback(IHttpContext context, RouteMatch route);
}