19 lines
373 B
C#
19 lines
373 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Web.Http;
|
|||
|
|
|||
|
namespace ChatRoomServer.Www
|
|||
|
{
|
|||
|
public static class WebApiConfig
|
|||
|
{
|
|||
|
public static void Register(HttpConfiguration config)
|
|||
|
{
|
|||
|
// Web API 配置和服务
|
|||
|
|
|||
|
// Web API 路由
|
|||
|
config.MapHttpAttributeRoutes();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|