aspnetcore/src/Microsoft.AspNet.Routing/Tree/TreeRoute.cs

22 lines
470 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Microsoft.AspNet.Routing.Tree
{
public class TreeRoute : IRoute
{
public BoundRoute Bind(RouteBindingContext context)
{
throw new NotImplementedException();
}
public RouteMatch GetMatch(RoutingContext context)
{
throw new NotImplementedException();
}
}
}