mirror of
https://github.com/opensim/opensim.git
synced 2026-08-10 11:33:28 +08:00
* Completed conceptual LlsdMethod - everything resides in SimpleApp pending guru approval.
This commit is contained in:
13
OpenSim/Framework/Servers/ILlsdMethodHandler.cs
Normal file
13
OpenSim/Framework/Servers/ILlsdMethodHandler.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace OpenSim.Framework.Servers
|
||||
{
|
||||
public interface ILlsdMethodHandler
|
||||
{
|
||||
string Handle(string request, string path);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
@@ -4,6 +4,5 @@ using System.Text;
|
||||
|
||||
namespace OpenSim.Framework.Servers
|
||||
{
|
||||
public delegate object LlsdMethod(object request, string path, string param);
|
||||
public delegate TResponse LlsdMethod<TResponse, TRequest>( TRequest request );
|
||||
}
|
||||
|
||||
@@ -96,6 +96,9 @@
|
||||
<Compile Include="CheckSumServer.cs">
|
||||
<SubType>Code</SubType>
|
||||
</Compile>
|
||||
<Compile Include="ILlsdMethodHandler.cs">
|
||||
<SubType>Code</SubType>
|
||||
</Compile>
|
||||
<Compile Include="LlsdMethod.cs">
|
||||
<SubType>Code</SubType>
|
||||
</Compile>
|
||||
|
||||
@@ -13,6 +13,7 @@
|
||||
<sources failonempty="true">
|
||||
<include name="BaseHttpServer.cs" />
|
||||
<include name="CheckSumServer.cs" />
|
||||
<include name="ILlsdMethodHandler.cs" />
|
||||
<include name="LlsdMethod.cs" />
|
||||
<include name="RestMethod.cs" />
|
||||
<include name="UDPServerBase.cs" />
|
||||
|
||||
Reference in New Issue
Block a user