aspnetcore/src/Microsoft.AspNet.Routing/IRouteBuilder.cs

19 lines
481 B
C#

// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
using System.Collections.Generic;
namespace Microsoft.AspNet.Routing
{
public interface IRouteBuilder
{
IRouter DefaultHandler { get; set; }
IServiceProvider ServiceProvider { get; }
IList<IRouter> Routes { get; }
IRouter Build();
}
}