17 lines
476 B
C#
17 lines
476 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Net;
|
|
|
|
namespace MontoyaTech.Rest.Net
|
|
{
|
|
/// <summary>
|
|
/// A delegate that can be used to pre process requests and stop them from being handled by routes if needed.
|
|
/// </summary>
|
|
/// <param name="context"></param>
|
|
/// <returns></returns>
|
|
public delegate bool RequestPreProcessEventHandler(HttpListenerContext context);
|
|
}
|