AuthorizeAttribute.AuthorizeCore(HttpContextBase) Method

Definition

When overridden, provides an entry point for custom authorization checks.

protected virtual bool AuthorizeCore (System.Web.HttpContextBase httpContext);
abstract member AuthorizeCore : System.Web.HttpContextBase -> bool
override this.AuthorizeCore : System.Web.HttpContextBase -> bool
Protected Overridable Function AuthorizeCore (httpContext As HttpContextBase) As Boolean

Parameters

httpContext
HttpContextBase

The HTTP context, which encapsulates all HTTP-specific information about an individual HTTP request.

Returns

true if the user is authorized; otherwise, false.

Exceptions

The httpContext parameter is null.

Applies to