namespace Umbraco.Web.Routing
{
///
/// Provides a method to try to find an assign an Umbraco document to a PublishedContentRequest when everything else has failed.
///
internal interface IDocumentLastChanceLookup
{
///
/// Tries to find and assign an Umbraco document to a PublishedContentRequest.
///
/// The PublishedContentRequest.
/// A value indicating whether an Umbraco document was found and assigned.
/// Optionally, can also assign the template, although that is not required.
bool TrySetDocument(PublishedContentRequest docRequest);
}
}