diff --git a/src/Umbraco.Web/Routing/PublishedContentRequest.cs b/src/Umbraco.Web/Routing/PublishedContentRequest.cs
index 3598d5ff8d..ef55b51767 100644
--- a/src/Umbraco.Web/Routing/PublishedContentRequest.cs
+++ b/src/Umbraco.Web/Routing/PublishedContentRequest.cs
@@ -613,13 +613,13 @@ namespace Umbraco.Web.Routing
// Note: we used to set a default value here but that would then be the default
// for ALL requests, we shouldn't overwrite it though if people are using [OutputCache] for example
// see: https://our.umbraco.com/forum/using-umbraco-and-getting-started/79715-output-cache-in-umbraco-752
- internal HttpCacheability Cacheability { get; set; }
+ public HttpCacheability Cacheability { get; set; }
///
/// Gets or sets a list of Extensions to append to the Response.Cache object
///
private List _cacheExtensions = new List();
- internal List CacheExtensions
+ public List CacheExtensions
{
get { return _cacheExtensions; }
set { _cacheExtensions = value; }
@@ -629,7 +629,7 @@ namespace Umbraco.Web.Routing
/// Gets or sets a dictionary of Headers to append to the Response object
///
private Dictionary _headers = new Dictionary();
- internal Dictionary Headers
+ public Dictionary Headers
{
get { return _headers; }
set { _headers = value; }
@@ -640,4 +640,4 @@ namespace Umbraco.Web.Routing
///
public bool IgnorePublishedContentCollisions { get; set; }
}
-}
\ No newline at end of file
+}