Files
opensim/OpenSim.Servers/IRestHandler.cs
lbsa71 08d5d10d62 * Started on converting UserHTTPServer to BaseHttpServer
* Added a 'param' param to the RestMethod
* Added RestHandlerEntry to store more info about the 'rest' handler
2007-04-11 14:14:19 +00:00

9 lines
190 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace OpenSim.Servers
{
public delegate string RestMethod( string request, string path, string param );
}