14 lines
334 B
C#
14 lines
334 B
C#
using System.Web;
|
|
using Umbraco.Core.Runtime;
|
|
|
|
namespace Umbraco.Web.Runtime
|
|
{
|
|
public class AspNetUmbracoBootPermissionChecker : IUmbracoBootPermissionChecker
|
|
{
|
|
public void ThrowIfNotPermissions()
|
|
{
|
|
new AspNetHostingPermission(AspNetHostingPermissionLevel.Unrestricted).Demand();
|
|
}
|
|
}
|
|
}
|