Updates authorized web services/http handlers to use WebSecurity and implements the new base class

properties available in 6.1. Updates WebSecurity with a few more helpful methods.
This commit is contained in:
Shannon Deminick
2013-04-09 22:11:12 +06:00
parent 63cae70ec3
commit 16746c8548
10 changed files with 180 additions and 175 deletions

View File

@@ -0,0 +1,11 @@
namespace Umbraco.Web.Security
{
internal enum ValidateRequestAttempt
{
Success,
FailedNoPrivileges,
FailedTimedOut,
FailedNoContextId,
FailedNoSsl
}
}