System.Web.Mvc Namespace

 

The System.Web.Mvc namespace contains classes and interfaces that support the ASP.NET Model View Controller (MVC) framework for creating Web applications. This namespace includes classes that represent controllers, controller factories, action results, views, partial view, model binders, and much more.

Classes

Class Description
System_CAPS_pubclass AcceptVerbsAttribute

Represents an attribute that specifies which HTTP verbs an action method will respond to.

System_CAPS_pubclass ActionDescriptor

Provides information about an action method, such as its name, controller, parameters, attributes, and filters.

System_CAPS_pubclass ActionExecutedContext

Provides the context for the ActionExecuted method of the ActionFilterAttribute class.

System_CAPS_pubclass ActionExecutingContext

Provides the context for the ActionExecuting method of the ActionFilterAttribute class.

System_CAPS_pubclass ActionFilterAttribute

Represents the base class for filter attributes.

System_CAPS_pubclass ActionMethodSelectorAttribute

Represents an attribute that is used to influence the selection of an action method.

System_CAPS_pubclass ActionNameAttribute

Represents an attribute that is used for the name of an action.

System_CAPS_pubclass ActionNameSelectorAttribute

Represents an attribute that affects the selection of an action method.

System_CAPS_pubclass ActionResult

Represents the result of an action method.

System_CAPS_pubclass AdditionalMetadataAttribute

Provides a class that implements the IMetadataAware interface in order to support additional metadata.

System_CAPS_pubclass AjaxHelper

Represents support for rendering HTML in AJAX scenarios within a view.

System_CAPS_pubclass AjaxHelper<TModel>

Represents support for rendering HTML in AJAX scenarios within a strongly typed view.

System_CAPS_pubclass AjaxRequestExtensions

Represents a class that extends the HttpRequestBase class by adding the ability to determine whether an HTTP request is an AJAX request.

System_CAPS_pubclass AllowAnonymousAttribute

Represents an attribute that marks controllers and actions to skip the AuthorizeAttribute during authorization.

System_CAPS_pubclass AllowHtmlAttribute

Allows a request to include HTML markup during model binding by skipping request validation for the property. (It is strongly recommended that your application explicitly check all models where you disable request validation in order to prevent script exploits.)

System_CAPS_pubclass AreaRegistration

Provides a way to register one or more areas in an ASP.NET MVC application.

System_CAPS_pubclass AreaRegistrationContext

Encapsulates the information that is required in order to register an area within an ASP.NET MVC application.

System_CAPS_pubclass AssociatedMetadataProvider

Provides an abstract class to implement a metadata provider.

System_CAPS_pubclass AssociatedValidatorProvider

Provides an abstract class for classes that implement a validation provider.

System_CAPS_pubclass AsyncController

Provided for backward compatibility with ASP.NET MVC 3.

System_CAPS_pubclass AsyncTimeoutAttribute

Represents an attribute that is used to set the timeout value, in milliseconds, for an asynchronous method.

System_CAPS_pubclass AuthorizationContext

Encapsulates the information that is required for using an AuthorizeAttribute attribute.

System_CAPS_pubclass AuthorizeAttribute

Specifies that access to a controller or action method is restricted to users who meet the authorization requirement.

System_CAPS_pubclass BindAttribute

Represents an attribute that is used to provide details about how model binding to a parameter should occur.

System_CAPS_pubclass BuildManagerCompiledView

Represents the base class for views that are compiled by the BuildManager class before being rendered by a view engine.

System_CAPS_pubclass BuildManagerViewEngine

Provides a base class for view engines.

System_CAPS_pubclass ByteArrayModelBinder

Maps a browser request to a byte array.

System_CAPS_pubclass CachedAssociatedMetadataProvider<TModelMetadata>

Provides an abstract class to implement a cached metadata provider.

System_CAPS_pubclass CachedDataAnnotationsMetadataAttributes

Provides a container to cache System.ComponentModel.DataAnnotations attributes.

System_CAPS_pubclass CachedDataAnnotationsModelMetadata

Provides a container to cache DataAnnotationsModelMetadata.

System_CAPS_pubclass CachedDataAnnotationsModelMetadataProvider

Implements the default cached model metadata provider for ASP.NET MVC.

System_CAPS_pubclass CachedModelMetadata<TPrototypeCache>

Provides a container for cached metadata.

System_CAPS_pubclass CancellationTokenModelBinder

Provides a mechanism to propagates notification that model binder operations should be canceled.

System_CAPS_pubclass ChildActionOnlyAttribute

Represents an attribute that is used to indicate that an action method should be called only as a child action.

System_CAPS_pubclass ChildActionValueProvider

Represents a value provider for values from child actions.

System_CAPS_pubclass ChildActionValueProviderFactory

Represents a factory for creating value provider objects for child actions.

System_CAPS_pubclass ClientDataTypeModelValidatorProvider

Returns the client data-type model validators.

System_CAPS_pubclass CompareAttribute

Obsolete.Provides an attribute that compares two properties of a model.

System_CAPS_pubclass ContentResult

Represents a user-defined content type that is the result of an action method.

System_CAPS_pubclass Controller

Provides methods that respond to HTTP requests that are made to an ASP.NET MVC Web site.

System_CAPS_pubclass ControllerActionInvoker

Represents a class that is responsible for invoking the action methods of a controller.

System_CAPS_pubclass ControllerBase

Represents the base class for all MVC controllers.

System_CAPS_pubclass ControllerBuilder

Represents a class that is responsible for dynamically building a controller.

System_CAPS_pubclass ControllerContext

Encapsulates information about an HTTP request that matches specified RouteBase and ControllerBase instances.

System_CAPS_pubclass ControllerDescriptor

Encapsulates information that describes a controller, such as its name, type, and actions.

System_CAPS_pubclass ControllerInstanceFilterProvider

Adds the controller to the FilterProviderCollection instance.

System_CAPS_pubclass CustomModelBinderAttribute

Represents an attribute that invokes a custom model binder.

System_CAPS_pubclass DataAnnotationsModelMetadata

Provides a container for common metadata, for the DataAnnotationsModelMetadataProvider class, and for the DataAnnotationsModelValidator class for a data model.

System_CAPS_pubclass DataAnnotationsModelMetadataProvider

Implements the default model metadata provider for ASP.NET MVC.

System_CAPS_pubclass DataAnnotationsModelValidator

Provides a model validator.

System_CAPS_pubclass DataAnnotationsModelValidator<TAttribute>

Provides a model validator for a specified validation type.

System_CAPS_pubclass DataAnnotationsModelValidatorProvider

Implements the default validation provider for ASP.NET MVC.

System_CAPS_pubclass DataErrorInfoModelValidatorProvider

Provides a container for the error-information model validator.

System_CAPS_pubclass DefaultControllerFactory

Represents the controller factory that is registered by default.

System_CAPS_pubclass DefaultModelBinder

Maps a browser request to a data object. This class provides a concrete implementation of a model binder.

System_CAPS_pubclass DefaultViewLocationCache

Represents a memory cache for view locations.

System_CAPS_pubclass DependencyResolver

Provides a registration point for dependency resolvers that implement IDependencyResolver or the Common Service Locator IServiceLocator interface.

System_CAPS_pubclass DependencyResolverExtensions

Provides a type-safe implementation of GetService and GetServices.

System_CAPS_pubclass DictionaryValueProvider<TValue>

Represents the base class for value providers whose values come from a collection that implements the IDictionary<TKey, TValue> interface.

System_CAPS_pubclass EmptyModelMetadataProvider

Provides an empty metadata provider for data models that do not require metadata.

System_CAPS_pubclass EmptyModelValidatorProvider

Provides an empty validation provider for models that do not require a validator.

System_CAPS_pubclass EmptyResult

Represents a result that does nothing, such as a controller action method that returns nothing.

System_CAPS_pubclass ExceptionContext

Provides the context for using the HandleErrorAttribute class.

System_CAPS_pubclass ExpressionHelper

Provides a helper class to get the model name from an expression.

System_CAPS_pubclass FieldValidationMetadata

Provides a container for client-side field validation metadata.

System_CAPS_pubclass FileContentResult

Sends the contents of a binary file to the response.

System_CAPS_pubclass FilePathResult

Sends the contents of a file to the response.

System_CAPS_pubclass FileResult

Represents a base class that is used to send binary file content to the response.

System_CAPS_pubclass FileStreamResult

Sends binary content to the response by using a Stream instance.

System_CAPS_pubclass Filter

Represents a metadata class that contains a reference to the implementation of one or more of the filter interfaces, the filter's order, and the filter's scope.

System_CAPS_pubclass FilterAttribute

Represents the base class for action and result filter attributes.

System_CAPS_pubclass FilterAttributeFilterProvider

Defines a filter provider for filter attributes.

System_CAPS_pubclass FilterInfo

Encapsulates information about the available action filters.

System_CAPS_pubclass FilterProviderCollection

Represents the collection of filter providers for the application.

System_CAPS_pubclass FilterProviders

Provides a registration point for filters.

System_CAPS_pubclass FormCollection

Contains the form value providers for the application.

System_CAPS_pubclass FormContext

Encapsulates information that is required in order to validate and process the input data from an HTML form.

System_CAPS_pubclass FormValueProvider

Represents a value provider for form values that are contained in a NameValueCollection object.

System_CAPS_pubclass FormValueProviderFactory

Represents a class that is responsible for creating a new instance of a form-value provider object.

System_CAPS_pubclass GlobalFilterCollection

Represents a class that contains all the global filters.

System_CAPS_pubclass GlobalFilters

Represents the global filter collection.

System_CAPS_pubclass HandleErrorAttribute

Represents an attribute that is used to handle an exception that is thrown by an action method.

System_CAPS_pubclass HandleErrorInfo

Encapsulates information for handling an error that was thrown by an action method.

System_CAPS_pubclass HiddenInputAttribute

Represents an attribute that is used to indicate whether a property or field value should be rendered as a hidden input element.

System_CAPS_pubclass HtmlHelper

Supports the rendering of HTML controls in a view.

System_CAPS_pubclass HtmlHelper<TModel>

Represents support for rendering HTML controls in a strongly typed view.

System_CAPS_pubclass HttpDeleteAttribute

Represents an attribute that is used to restrict an action method so that the method handles only HTTP DELETE requests.

System_CAPS_pubclass HttpFileCollectionValueProvider

Represents a value provider to use with values that come from a collection of HTTP files.

System_CAPS_pubclass HttpFileCollectionValueProviderFactory

Represents a class that is responsible for creating a new instance of an HTTP file collection value provider object.

System_CAPS_pubclass HttpGetAttribute

Represents an attribute that is used to restrict an action method so that the method handles only HTTP GET requests.

System_CAPS_pubclass HttpHeadAttribute

Specifies that the HTTP request must be the HTTP HEAD method.

System_CAPS_pubclass HttpNotFoundResult

Defines an object that is used to indicate that the requested resource was not found.

System_CAPS_pubclass HttpOptionsAttribute

Represents an attribute that is used to restrict an action method so that the method handles only HTTP OPTIONS requests.

System_CAPS_pubclass HttpPatchAttribute

Represents an attribute that is used to restrict an action method so that the method handles only HTTP PATCH requests.

System_CAPS_pubclass HttpPostAttribute

Represents an attribute that is used to restrict an action method so that the method handles only HTTP POST requests.

System_CAPS_pubclass HttpPostedFileBaseModelBinder

Binds a model to a posted file.

System_CAPS_pubclass HttpPutAttribute

Represents an attribute that is used to restrict an action method so that the method handles only HTTP PUT requests.

System_CAPS_pubclass HttpRequestExtensions

Extends the HttpRequestBase class that contains the HTTP values that were sent by a client during a Web request.

System_CAPS_pubclass HttpStatusCodeResult

Provides a way to return an action result with a specific HTTP response status code and description.

System_CAPS_pubclass HttpUnauthorizedResult

Represents the result of an unauthorized HTTP request.

System_CAPS_pubclass JavaScriptResult

Sends JavaScript content to the response.

System_CAPS_pubclass JQueryFormValueProvider

The JQuery Form Value provider is used to handle JQuery formatted data in request Forms.

System_CAPS_pubclass JQueryFormValueProviderFactory

Provides the necessary ValueProvider to handle JQuery Form data.

System_CAPS_pubclass JsonResult

Represents a class that is used to send JSON-formatted content to the response.

System_CAPS_pubclass JsonValueProviderFactory

Enables action methods to send and receive JSON-formatted text and to model-bind the JSON text to parameters of action methods.

System_CAPS_pubclass LinqBinaryModelBinder

Maps a browser request to a LINQ Binary object.

System_CAPS_pubclass MaxLengthAttributeAdapter

Provides an adapter for the MaxLengthAttribute attribute.

System_CAPS_pubclass MinLengthAttributeAdapter

Provides an adapter for the MinLengthAttribute attribute.

System_CAPS_pubclass ModelBinderAttribute

Represents an attribute that is used to associate a model type to a model-builder type.

System_CAPS_pubclass ModelBinderDictionary

Represents a class that contains all model binders for the application, listed by binder type.

System_CAPS_pubclass ModelBinderProviderCollection

Represents the collection of model binder provider.

System_CAPS_pubclass ModelBinderProviders

Provides a container for model binder providers.

System_CAPS_pubclass ModelBinders

Provides global access to the model binders for the application.

System_CAPS_pubclass ModelBindingContext

Provides the context in which a model binder functions.

System_CAPS_pubclass ModelError

Represents an error that occurs during model binding.

System_CAPS_pubclass ModelErrorCollection

A collection of ModelError instances.

System_CAPS_pubclass ModelMetadata

Provides a container for common metadata, for the ModelMetadataProvider class, and for the ModelValidator class for a data model.

System_CAPS_pubclass ModelMetadataProvider

Provides an abstract base class for a custom metadata provider.

System_CAPS_pubclass ModelMetadataProviders

Provides a container for the current ModelMetadataProvider instance.

System_CAPS_pubclass ModelState

Encapsulates the state of model binding to a property of an action-method argument, or to the argument itself.

System_CAPS_pubclass ModelStateDictionary

Represents the state of an attempt to bind a posted form to an action method, which includes validation information.

System_CAPS_pubclass ModelValidationResult

Provides a container for a validation result.

System_CAPS_pubclass ModelValidator

Provides a base class for implementing validation logic.

System_CAPS_pubclass ModelValidatorProvider

Provides a list of validators for a model.

System_CAPS_pubclass ModelValidatorProviderCollection

Represents the collection of model-validator provider.

System_CAPS_pubclass ModelValidatorProviders

Provides a container for the current validation provider.

System_CAPS_pubclass MultiSelectList

Represents a list of items that users can select more than one item from.

System_CAPS_pubclass MvcFilter

When implemented in a derived class, provides a metadata class that contains a reference to the implementation of one or more of the filter interfaces, the filter's order, and the filter's scope.

System_CAPS_pubclass MvcHandler

Selects the controller that will handle an HTTP request.

System_CAPS_pubclass MvcHtmlString

Represents an HTML-encoded string that should not be encoded again.

System_CAPS_pubclass MvcHttpHandler

Verifies and processes an HTTP request.

System_CAPS_pubclass MvcRouteHandler

Creates an object that implements the IHttpHandler interface and passes the request context to it.

System_CAPS_pubclass MvcWebRazorHostFactory

Creates instances of T:System.Web.Mvc.MvcWebPageRazorHost files.

System_CAPS_pubclass NameValueCollectionExtensions

Extends a NameValueCollection object so that the collection can be copied to a specified dictionary.

System_CAPS_pubclass NameValueCollectionValueProvider

Represents the base class for value providers whose values come from a NameValueCollection object.

System_CAPS_pubclass NoAsyncTimeoutAttribute

Provides a convenience wrapper for the AsyncTimeoutAttribute attribute.

System_CAPS_pubclass NonActionAttribute

Represents an attribute that is used to indicate that a controller method is not an action method.

System_CAPS_pubclass OutputCacheAttribute

Represents an attribute that is used to mark an action method whose output will be cached.

System_CAPS_pubclass OverrideActionFiltersAttribute

Represents the attributes associated with the override filter.

System_CAPS_pubclass OverrideAuthenticationAttribute

Represents the attributes associated with the authentication.

System_CAPS_pubclass OverrideAuthorizationAttribute

Represents the attributes associated with the authorization.

System_CAPS_pubclass OverrideExceptionFiltersAttribute

Represents the attributes associated with the exception filter.

System_CAPS_pubclass OverrideResultFiltersAttribute

Represents the attributes associated with the result filter.

System_CAPS_pubclass ParameterBindingInfo

Encapsulates information for binding action-method parameters to a data model.

System_CAPS_pubclass ParameterDescriptor

Contains information that describes a parameter.

System_CAPS_pubclass PartialViewResult

Represents a base class that is used to send a partial view to the response.

System_CAPS_pubclass QueryStringValueProvider

Represents a value provider for query strings that are contained in a NameValueCollection object.

System_CAPS_pubclass QueryStringValueProviderFactory

Represents a class that is responsible for creating a new instance of a query-string value-provider object.

System_CAPS_pubclass RangeAttributeAdapter

Provides an adapter for the RangeAttribute attribute.

System_CAPS_pubclass RazorView

Represents the class used to create views that have Razor syntax.

System_CAPS_pubclass RazorViewEngine

Represents a view engine that is used to render a Web page that uses the ASP.NET Razor syntax.

System_CAPS_pubclass RedirectResult

Controls the processing of application actions by redirecting to a specified URI.

System_CAPS_pubclass RedirectToRouteResult

Represents a result that performs a redirection by using the specified route values dictionary.

System_CAPS_pubclass ReflectedActionDescriptor

Contains information that describes a reflected action method.

System_CAPS_pubclass ReflectedControllerDescriptor

Contains information that describes a reflected controller.

System_CAPS_pubclass ReflectedParameterDescriptor

Contains information that describes a reflected action-method parameter.

System_CAPS_pubclass RegularExpressionAttributeAdapter

Provides an adapter for the RegularExpressionAttribute attribute.

System_CAPS_pubclass RemoteAttribute

Provides an attribute that uses the jQuery validation plug-in remote validator.

System_CAPS_pubclass RequiredAttributeAdapter

Provides an adapter for the RequiredAttributeAttribute attribute.

System_CAPS_pubclass RequireHttpsAttribute

Represents an attribute that forces an unsecured HTTP request to be re-sent over HTTPS.

System_CAPS_pubclass ResultExecutedContext

Provides the context for the OnResultExecuted method of the ActionFilterAttribute class.

System_CAPS_pubclass ResultExecutingContext

Provides the context for the OnResultExecuting method of the ActionFilterAttribute class.

System_CAPS_pubclass RouteAreaAttribute

Defines the area to set for all the routes defined in this controller.

System_CAPS_pubclass RouteAttribute

Place on a controller or action to expose it directly via a route. When placed on a controller, it applies to actions that do not have any System.Web.Mvc.RouteAttribute’s on them.

System_CAPS_pubclass RouteCollectionAttributeRoutingExtensions

Provides routing extensions for route collection attribute.

System_CAPS_pubclass RouteCollectionExtensions

Extends a RouteCollection object for MVC routing.

System_CAPS_pubclass RouteDataValueProvider

Represents a value provider for route data that is contained in an object that implements the IDictionary<TKey, TValue> interface.

System_CAPS_pubclass RouteDataValueProviderFactory

Represents a factory for creating route-data value provider objects.

System_CAPS_pubclass RoutePrefixAttribute

Annotates a controller with a route prefix that applies to all actions within the controller.

System_CAPS_pubclass SelectList

Represents a list that lets users select one item.

System_CAPS_pubclass SelectListGroup

Represents the optgroup HTML element and its attributes. In a select list, multiple groups with the same name are supported. They are compared with reference equality.

System_CAPS_pubclass SelectListItem

Represents the selected item in an instance of the SelectList class.

System_CAPS_pubclass SessionStateAttribute

Specifies the session state of the controller.

System_CAPS_pubclass SessionStateTempDataProvider

Provides session-state data to the current TempDataDictionary object.

System_CAPS_pubclass StringLengthAttributeAdapter

Provides an adapter for the StringLengthAttribute attribute.

System_CAPS_pubclass TempDataDictionary

Represents a set of data that persists only from one request to the next.

System_CAPS_pubclass TemplateInfo

Encapsulates information about the current template context.

System_CAPS_pubclass UrlHelper

Contains methods to build URLs for ASP.NET MVC within an application.

System_CAPS_pubclass UrlParameter

Represents an optional parameter that is used by the MvcHandler class during routing.

System_CAPS_pubclass ValidatableObjectAdapter

Provides an object adapter that can be validated.

System_CAPS_pubclass ValidateAntiForgeryTokenAttribute

Represents an attribute that is used to prevent forgery of a request.

System_CAPS_pubclass ValidateInputAttribute

Represents an attribute that is used to mark action methods whose input must be validated.

System_CAPS_pubclass ValueProviderCollection

Represents the collection of value-provider objects for the application.

System_CAPS_pubclass ValueProviderDictionary

Obsolete.Note: This API is now obsolete.

Represents a dictionary of value providers for the application.

System_CAPS_pubclass ValueProviderFactories

Represents a container for value-provider factory objects.

System_CAPS_pubclass ValueProviderFactory

Represents a factory for creating value-provider objects.

System_CAPS_pubclass ValueProviderFactoryCollection

Represents the collection of value-provider factories for the application.

System_CAPS_pubclass ValueProviderResult

Represents the result of binding a value (such as from a form post or query string) to an action-method argument property, or to the argument itself.

System_CAPS_pubclass ViewContext

Encapsulates information that is related to rendering a view.

System_CAPS_pubclass ViewDataDictionary

Represents a container that is used to pass data between a controller and a view.

System_CAPS_pubclass ViewDataDictionary<TModel>

Represents a container that is used to pass strongly typed data between a controller and a view.

System_CAPS_pubclass ViewDataInfo

Encapsulates information about the current template content that is used to develop templates and about HTML helpers that interact with templates.

System_CAPS_pubclass ViewEngineCollection

Represents a collection of view engines that are available to the application.

System_CAPS_pubclass ViewEngineResult

Represents the result of locating a view engine.

System_CAPS_pubclass ViewEngines

Represents a collection of view engines that are available to the application.

System_CAPS_pubclass ViewMasterPage

Represents the information that is needed to build a master view page.

System_CAPS_pubclass ViewMasterPage<TModel>

Represents the information that is required in order to build a strongly typed master view page.

System_CAPS_pubclass ViewPage

Represents the properties and methods that are needed to render a view as a Web Forms page.

System_CAPS_pubclass ViewPage<TModel>

Represents the information that is required in order to render a strongly typed view as a Web Forms page.

System_CAPS_pubclass ViewResult

Represents a class that is used to render a view by using an IView instance that is returned by an IViewEngine object.

System_CAPS_pubclass ViewResultBase

Represents a base class that is used to provide the model to the view and then render the view to the response.

System_CAPS_pubclass ViewStartPage

Provides an abstract class that can be used to implement a view start (master) page.

System_CAPS_pubclass ViewTemplateUserControl

Provides a container for TemplateInfo objects.

System_CAPS_pubclass ViewTemplateUserControl<TModel>

Provides a container for TemplateInfo objects.

System_CAPS_pubclass ViewType

Represents the type of a view.

System_CAPS_pubclass ViewUserControl

Represents the information that is needed to build a user control.

System_CAPS_pubclass ViewUserControl<TModel>

Represents the information that is required in order to build a strongly typed user control.

System_CAPS_pubclass VirtualPathProviderViewEngine

Represents an abstract base-class implementation of the IViewEngine interface.

System_CAPS_pubclass WebFormView

Represents the information that is needed to build a Web Forms page in ASP.NET MVC.

System_CAPS_pubclass WebFormViewEngine

Represents a view engine that is used to render a Web Forms page to the response.

System_CAPS_pubclass WebViewPage

Represents the properties and methods that are needed in order to render a view that uses ASP.NET Razor syntax.

System_CAPS_pubclass WebViewPage<TModel>

Represents the properties and methods that are needed in order to render a view that uses ASP.NET Razor syntax.

Interfaces

Interface Description
System_CAPS_pubinterface IActionFilter

Defines the methods that are used in an action filter.

System_CAPS_pubinterface IActionInvoker

Defines the contract for an action invoker, which is used to invoke an action in response to an HTTP request.

System_CAPS_pubinterface IActionInvokerFactory

Used to create an IActionInvoker instance for the current request.

System_CAPS_pubinterface IAuthorizationFilter

Defines the methods that are required for an authorization filter.

System_CAPS_pubinterface IClientValidatable

Provides a way for the ASP.NET MVC validation framework to discover at run time whether a validator has support for client validation.

System_CAPS_pubinterface IController

Defines the methods that are required for a controller.

System_CAPS_pubinterface IControllerActivator

Provides fine-grained control over how controllers are instantiated using dependency injection.

System_CAPS_pubinterface IControllerFactory

Defines the methods that are required for a controller factory.

System_CAPS_pubinterface IDependencyResolver

Defines the methods that simplify service location and dependency resolution.

System_CAPS_pubinterface IEnumerableValueProvider

Represents a special IValueProvider that has the ability to be enumerable.

System_CAPS_pubinterface IExceptionFilter

Defines the methods that are required for an exception filter.

System_CAPS_pubinterface IFilterProvider

Provides an interface for finding filters.

System_CAPS_pubinterface IMetadataAware

Provides an interface for exposing attributes to the AssociatedMetadataProvider class.

System_CAPS_pubinterface IMethodInfoActionDescriptor

An optional interface for ActionDescriptor types which provide a MethodInfo.

System_CAPS_pubinterface IModelBinder

Defines the methods that are required for a model binder.

System_CAPS_pubinterface IModelBinderProvider

Defines methods that enable dynamic implementations of model binding for classes that implement the IModelBinder interface.

System_CAPS_pubinterface IMvcFilter

Defines members that specify the order of filters and whether multiple filters are allowed.

System_CAPS_pubinterface IResultFilter

Defines the methods that are required for a result filter.

System_CAPS_pubinterface IRouteWithArea

Associates a route with an area in an ASP.NET MVC application.

System_CAPS_pubinterface ITempDataProvider

Defines the contract for temporary-data providers that store data that is viewed on the next request.

System_CAPS_pubinterface ITempDataProviderFactory

Used to create an ITempDataProvider instance for the controller.

System_CAPS_pubinterface IUnvalidatedValueProvider

Represents an IValueProvider interface that can skip request validation.

System_CAPS_pubinterface IValueProvider

Defines the methods that are required for a value provider in ASP.NET MVC.

System_CAPS_pubinterface IView

Defines the methods that are required for a view.

System_CAPS_pubinterface IViewDataContainer

Defines the methods that are required for a view data dictionary.

System_CAPS_pubinterface IViewEngine

Defines the methods that are required for a view engine.

System_CAPS_pubinterface IViewLocationCache

Defines the methods that are required in order to cache view locations in memory.

System_CAPS_pubinterface IViewPageActivator

Provides fine-grained control over how view pages are created using dependency injection.

Delegates

Delegate Description
System_CAPS_pubdelegate ActionSelector

Represents a delegate that contains the logic for selecting an action method.

System_CAPS_pubdelegate DataAnnotationsModelValidationFactory

Represents the method that creates a DataAnnotationsModelValidatorProvider instance.

System_CAPS_pubdelegate DataAnnotationsValidatableObjectAdapterFactory

Provides a factory for validators that are based on IValidatableObject.

Enumerations

Enumeration Description
System_CAPS_pubenum AreaReference

Controls interpretation of a controller name when constructing a RemoteAttribute.

System_CAPS_pubenum FilterScope

Defines values that specify the order in which ASP.NET MVC filters run within the same filter type and filter order.

System_CAPS_pubenum FormMethod

Enumerates the HTTP request types for a form.

System_CAPS_pubenum Html5DateRenderingMode

Enumerates the date rendering mode for HTML5.

System_CAPS_pubenum HttpVerbs

Enumerates the HTTP verbs.

System_CAPS_pubenum InputType

Enumerates the types of input controls.

System_CAPS_pubenum JsonRequestBehavior

Specifies whether HTTP GET requests from the client are allowed.

See Also

System.Web.Mvc.Ajax
System.Web.Mvc.Async
System.Web.Mvc.Html

Return to top