ln.json.http/IObjectHandler.cs

12 lines
262 B
C#

using System;
using ln.http;
using System.Collections;
using System.Collections.Generic;
namespace ln.json.http
{
public interface IObjectHandler
{
HttpResponse Dispatch(HttpRequest httpRequest, object owner, Queue<string> pathQueue);
}
}