27 lines
668 B
C#
27 lines
668 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Web;
|
|
using System.Web.Routing;
|
|
|
|
namespace Umbraco.Web.Routing
|
|
{
|
|
//public class WebServicesRouteConstraint : IRouteConstraint
|
|
//{
|
|
// public bool Match(
|
|
// HttpContextBase httpContext,
|
|
// Route route,
|
|
// string parameterName,
|
|
// RouteValueDictionary values,
|
|
// RouteDirection routeDirection)
|
|
// {
|
|
// if (routeDirection == RouteDirection.UrlGeneration)
|
|
// {
|
|
|
|
// }
|
|
// return true;
|
|
// }
|
|
//}
|
|
}
|