mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-07-18 22:35:58 +08:00
20 lines
462 B
C#
20 lines
462 B
C#
![]() |
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Web.Http;
|
|||
|
|
|||
|
namespace OpenAuth.Web
|
|||
|
{
|
|||
|
public static class WebApiConfig
|
|||
|
{
|
|||
|
public static void Register(HttpConfiguration config)
|
|||
|
{
|
|||
|
config.Routes.MapHttpRoute(
|
|||
|
name: "DefaultApi",
|
|||
|
routeTemplate: "api/{controller}/{id}",
|
|||
|
defaults: new { id = RouteParameter.Optional }
|
|||
|
);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|