HttpContext::SkipAuthorization Property
.NET Framework (current version)
Gets or sets a value that specifies whether the UrlAuthorizationModule object should skip the authorization check for the current request.
Assembly: System.Web (in System.Web.dll)
public: property bool SkipAuthorization { bool get(); [SecurityPermissionAttribute(SecurityAction::Demand, ControlPrincipal = true)] void set(bool value); }
Property Value
Type: System::Booleantrue if UrlAuthorizationModule should skip the authorization check; otherwise, false. The default is false.
The SkipAuthorization property is intended for advanced use by authentication modules that need to redirect to a page that allows anonymous connections. The Forms authentication module and Passport authentication module both set SkipAuthorization when redirecting to a configured logon page. Setting SkipAuthorization requires the ControlPrincipal flag to be set. For information about the ControlPrincipal flag, see SecurityPermissionFlag.
.NET Framework
Available since 1.1
Available since 1.1
Show: