Files
Umbraco-CMS/src/Umbraco.Web/Routing/DocumentLookupBase.cs
Shannon Deminick 73c79e8528 After talks with morten and stephane, this renames
IDocumentLookup -> IPublishedContentLookup
2012-10-02 01:43:05 +05:00

21 lines
878 B
C#

using System;
namespace Umbraco.Web.Routing
{
///// <summary>
///// Abstract DocumentLookup class
///// </summary>
//internal abstract class DocumentLookupBase : IPublishedContentLookup
//{
// public bool TrySetDocument(PublishedContentRequest docRequest)
// {
// if (docRequest == null) throw new ArgumentNullException("docRequest");
// if (docRequest.RoutingContext == null) throw new ArgumentNullException("docRequest.RoutingContext");
// if (docRequest.RoutingContext.UmbracoContext == null) throw new ArgumentNullException("docRequest.UmbracoContext");
// return TrySetDocument(docRequest, docRequest.RoutingContext, docRequest.UmbracoContext);
// }
// protected abstract bool TrySetDocument(PublishedContentRequest docRequest, RoutingContext routingContext, UmbracoContext umbracoContext);
//}
}