using System; using System.Net; namespace AllocsFixes.NetConnections.Servers.Web { public abstract class PathHandler { public abstract void HandleRequest (HttpListenerRequest req, HttpListenerResponse resp, HttpListenerBasicIdentity user); } }