namespace Umbraco.Web.Routing { /// /// Provides a method to try to find and assign an Umbraco document to a PublishedContentRequest. /// public interface IContentFinder { /// /// 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 or anything else on the document request, although that is not required. bool TryFindContent(PublishedRequest frequest); } }