HttpContext.SkipAuthorization Property
.NET Framework 3.0
Gets or sets a value that specifies whether the UrlAuthorizationModule object should skip the authorization check for the current request.
Namespace: System.Web
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
/** @property */ public boolean get_SkipAuthorization () /** @property */ public void set_SkipAuthorization (boolean value)
public function get SkipAuthorization () : boolean public function set SkipAuthorization (value : boolean)
Not applicable.
Property Value
true 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.
- SecurityPermission for setting the SkipAuthorization property. Demand value: Demand. Permission value: ControlPrincipal
Community Additions
ADD
Show: