Share via


WebApiEnabledAttribute Class

 

Represents the attribute indicating that the controller supports multiple formats (HTML, XML, JSON etc), HTTP method based dispatch and HTTP error handling.

Namespace:   Microsoft.Web.Mvc.Resources
Assembly:  Microsoft.Web.Mvc (in Microsoft.Web.Mvc.dll)

Inheritance Hierarchy

System.Object
  System.Attribute
    System.Web.Mvc.FilterAttribute
      System.Web.Mvc.ActionFilterAttribute
        Microsoft.Web.Mvc.Resources.WebApiEnabledAttribute

Syntax

[AttributeUsageAttribute(AttributeTargets.Class | AttributeTargets.Method, 
    Inherited = true, AllowMultiple = false)]
public class WebApiEnabledAttribute : ActionFilterAttribute, 
    IExceptionFilter
[AttributeUsageAttribute(AttributeTargets::Class | AttributeTargets::Method, 
    Inherited = true, AllowMultiple = false)]
public ref class WebApiEnabledAttribute : ActionFilterAttribute, 
    IExceptionFilter
[<AttributeUsageAttribute(AttributeTargets.Class | AttributeTargets.Method,
    Inherited = true, AllowMultiple = false)>]
type WebApiEnabledAttribute = 
    class
        inherit ActionFilterAttribute
        interface IExceptionFilter
    end
<AttributeUsageAttribute(AttributeTargets.Class Or AttributeTargets.Method,
    Inherited := True, AllowMultiple := False)>
Public Class WebApiEnabledAttribute
    Inherits ActionFilterAttribute
    Implements IExceptionFilter

Constructors

Name Description
System_CAPS_pubmethod WebApiEnabledAttribute()

Initializes a new instance of the WebApiEnabledAttribute class.

Properties

Name Description
System_CAPS_pubproperty AllowMultiple

Gets or sets a value that indicates whether more than one instance of the filter attribute can be specified.(Inherited from FilterAttribute.)

System_CAPS_pubproperty Order

Gets or sets the order in which the action filters are executed.(Inherited from FilterAttribute.)

System_CAPS_pubproperty StatusOnNullModel

Gets or sets the HTTP status code to use in case a null value is returned from the controller action method. The default is NotFound.

System_CAPS_pubproperty TypeId

(Inherited from Attribute.)

Methods

Name Description
System_CAPS_pubmethod Equals(Object)

(Inherited from Attribute.)

System_CAPS_protmethod Finalize()

(Inherited from Object.)

System_CAPS_pubmethod GetHashCode()

(Inherited from Attribute.)

System_CAPS_pubmethod GetType()

(Inherited from Object.)

System_CAPS_pubmethod IsDefaultAttribute()

(Inherited from Attribute.)

System_CAPS_pubmethodSystem_CAPS_static IsDefined(ControllerBase)

Returns a value that indicates whether the specified controller is defined on this member.

System_CAPS_pubmethod Match(Object)

(Inherited from Attribute.)

System_CAPS_protmethod MemberwiseClone()

(Inherited from Object.)

System_CAPS_pubmethod OnActionExecuted(ActionExecutedContext)

Called by the ASP.NET MVC framework after the action method executes.(Overrides ActionFilterAttribute.OnActionExecuted(ActionExecutedContext).)

System_CAPS_pubmethod OnActionExecuting(ActionExecutingContext)

Called by the ASP.NET MVC framework before the action method executes.(Inherited from ActionFilterAttribute.)

System_CAPS_pubmethod OnException(ExceptionContext)

Raises the exception event.

System_CAPS_pubmethod OnResultExecuted(ResultExecutedContext)

Called by the ASP.NET MVC framework after the action result executes.(Inherited from ActionFilterAttribute.)

System_CAPS_pubmethod OnResultExecuting(ResultExecutingContext)

Called by the ASP.NET MVC framework before the action result executes.(Inherited from ActionFilterAttribute.)

System_CAPS_pubmethod ToString()

(Inherited from Object.)

System_CAPS_pubmethod TryGetErrorResult(HttpException, ContentType, ResourceErrorActionResult)

Returns true if the specified exception, response format and action result will get an error result.

System_CAPS_pubmethod TryGetResult(ViewResultBase, ContentType, MultiFormatActionResult)

Returns true if the specified view result, response format and action result will get a result.

Explicit Interface Implementations

Name Description
System_CAPS_pubinterfaceSystem_CAPS_privmethod _Attribute.GetIDsOfNames(Guid, IntPtr, UInt32, UInt32, IntPtr)

(Inherited from Attribute.)

System_CAPS_pubinterfaceSystem_CAPS_privmethod _Attribute.GetTypeInfo(UInt32, UInt32, IntPtr)

(Inherited from Attribute.)

System_CAPS_pubinterfaceSystem_CAPS_privmethod _Attribute.GetTypeInfoCount(UInt32)

(Inherited from Attribute.)

System_CAPS_pubinterfaceSystem_CAPS_privmethod _Attribute.Invoke(UInt32, Guid, UInt32, Int16, IntPtr, IntPtr, IntPtr, IntPtr)

(Inherited from Attribute.)

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also

Microsoft.Web.Mvc.Resources Namespace

Return to top