blob: 3a5402e1fb3b8e503414884e019abb6f7cf5ef4c [file] [log] [blame] [raw]

using System;
using System.Net;
namespace RemoteView
{
abstract class PageHandler
{
public abstract byte[] handleRequest(HttpListenerResponse response, String[] uri);
}
}