using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Net.Http; using System.Web.Http; namespace ChatRoomServer.Www.Areas.Api.Controllers { [RoutePrefix("api/stat")] public class StatController : ApiController { /// /// 更新在线数 /// /// /// /// [HttpPost] [Route("update/{roomid}")] public bool UpdateRoomOnlineCount(string roomid, int count) { return true; } } }