Remove IControllerTypeProvider

This commit is contained in:
Pranav K 2016-05-24 11:41:29 -07:00
parent 90f0e29923
commit 15f113ddb1
1 changed files with 0 additions and 19 deletions

View File

@ -1,19 +0,0 @@
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System.Collections.Generic;
using System.Reflection;
namespace Microsoft.AspNetCore.Mvc.Controllers
{
/// <summary>
/// Provides methods for discovery of controller types.
/// </summary>
public interface IControllerTypeProvider
{
/// <summary>
/// Gets a <see cref="IEnumerable{T}"/> of controller <see cref="TypeInfo"/>s.
/// </summary>
IEnumerable<TypeInfo> ControllerTypes { get; }
}
}