From b200cb463e6be0b63c3fa637abcd3c75dabbc805 Mon Sep 17 00:00:00 2001 From: Marc Brooks Date: Mon, 30 Sep 2013 18:28:45 -0500 Subject: [PATCH] Make CacheHelperExtensions public so we can call CachedPartialView and ClearPartialViewCache In order to allow extensions to the logic and usage of the CachedPartial HtmlHelper, expose CachedPartialView and ClearPartialViewCache by making the wrapping static class public. --- src/Umbraco.Web/CacheHelperExtensions.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Umbraco.Web/CacheHelperExtensions.cs b/src/Umbraco.Web/CacheHelperExtensions.cs index 780f841190..ab96a0ee6a 100644 --- a/src/Umbraco.Web/CacheHelperExtensions.cs +++ b/src/Umbraco.Web/CacheHelperExtensions.cs @@ -16,7 +16,7 @@ namespace Umbraco.Web /// /// Extension methods for the cache helper /// - internal static class CacheHelperExtensions + public static class CacheHelperExtensions { /// /// Application event handler to bind to events to clear the cache for the cache helper extensions @@ -84,4 +84,4 @@ namespace Umbraco.Web cacheHelper.ClearCacheByKeySearch(PartialViewCacheKey); } } -} \ No newline at end of file +}