Files
Umbraco-CMS/src/Umbraco.Web/Routing/IContentLastChanceFinder.cs
2016-07-21 10:27:04 +02:00

11 lines
415 B
C#

namespace Umbraco.Web.Routing
{
/// <summary>
/// Provides a method to try to find and assign an Umbraco document to a <c>PublishedContentRequest</c>
/// when everything else has failed.
/// </summary>
/// <remarks>Identical to <see cref="IContentFinder"/> but required in order to differenciate them in ioc.</remarks>
public interface IContentLastChanceFinder : IContentFinder
{ }
}