blob: f0332ab0da1fc2c9d44b82625de447009e584536 [file] [log] [blame]
<%@ WebHandler Class="JayrockWeb.HelloWorld" Language="C#" %>
namespace JayrockWeb
{
using Jayrock.JsonRpc;
using Jayrock.JsonRpc.Web;
public class HelloWorld : JsonRpcHandler
{
[ JsonRpcMethod("greetings") ]
public string Greetings()
{
return "Welcome to Jayrock!";
}
}
}