aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Servers/LlsdMethod.cs
blob: c66873fe6b258940d1031b555958d6e7d2ff8707 (plain)
1
2
3
4
5
6
7
8
9
using System;
using System.Collections.Generic;
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 );
}