/sipsorcery-silverlight/SIPSorcery.TestWeb/MediatorService.asmx.cs
https://github.com/thecc4re/sipsorcery-mono · C# · 26 lines · 19 code · 2 blank · 5 comment · 0 complexity · dd7f80d41080fc23c296f65d4075eacb MD5 · raw file
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- using System.Web.Services;
-
- namespace SIPSorcery.TestWeb
- {
- /// <summary>
- /// Summary description for MediatorService
- /// </summary>
- [WebService(Namespace = "http://tempuri.org/")]
- [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
- [System.ComponentModel.ToolboxItem(false)]
- // To allow this Web Service to be called from script, using ASP.NET AJAX, uncomment the following line.
- // [System.Web.Script.Services.ScriptService]
- public class MediatorService : System.Web.Services.WebService
- {
-
- [WebMethod]
- public string HelloWorld()
- {
- return "Hello World";
- }
- }
- }