namespace EmbedIO.Routing
{
///
/// Base class for callbacks used to handle routed requests synchronously.
///
/// An interface representing the context of the request.
/// The matched route.
///
public delegate void SyncRouteHandlerCallback(IHttpContext context, RouteMatch route);
}