An ActionResult that returns a Accepted (202) response with a Location header.
AcceptedAtRouteResultAn ActionResult that returns a Accepted (202) response with a Location header.
AcceptedResultAn ActionResult that returns an Accepted (202) response with a Location header.
AcceptVerbsAttributeSpecifies what HTTP methods an action supports.
ActionContextContext object for execution of action which has been selected as part of an HTTP request.
ActionContextAttributeSpecifies that a controller property should be set with the current ActionContext when creating the controller. The property must have a public set method.
ActionNameAttributeSpecifies the name of an action.
ActionResultA default implementation of IActionResult.
ActionResult<TValue>A type that wraps either an TValue
instance or an ActionResult.
A BadRequestResult used for antiforgery validation failures. Use IAntiforgeryValidationFailedResult to match for validation failures inside MVC result filters.
ApiBehaviorOptionsOptions used to configure behavior for types annotated with ApiControllerAttribute.
ApiControllerAttributeIndicates that a type and all derived types are used to serve HTTP API responses.
Controllers decorated with this attribute are configured with features and behavior targeted at improving the developer experience for building APIs.
When decorated on an assembly, all controllers in the assembly will be treated as controllers with API behavior. For more information, see ApiController attribute.
ApiConventionMethodAttributeAPI conventions to be applied to a controller action.
API conventions are used to influence the output of ApiExplorer. ApiConventionMethodAttribute can be used to specify an exact convention method that applies to an action. ApiConventionTypeAttribute for details about applying conventions at the assembly or controller level.
ApiConventionTypeAttributeAPI conventions to be applied to an assembly containing MVC controllers or a single controller.
API conventions are used to influence the output of ApiExplorer. Conventions must be static types. Methods in a convention are matched to an action method using rules specified by ApiConventionNameMatchAttribute that may be applied to a method name or its parameters and ApiConventionTypeMatchAttribute that are applied to parameters.
When no attributes are found specifying the behavior, MVC matches method names and parameter names are matched using Exact and parameter types are matched using AssignableFrom.
ApiDescriptionActionDataRepresents data used to build an ApiDescription
, stored as part of the Properties.
Controls the visibility and group name for an ApiDescription
of the associated controller class or action method.
Specifies the area containing a controller or action.
AutoValidateAntiforgeryTokenAttributeAn attribute that causes validation of antiforgery tokens for all unsafe HTTP methods. An antiforgery token is required for HTTP methods other than GET, HEAD, OPTIONS, and TRACE.
BadRequestObjectResultAn ObjectResult that when executed will produce a Bad Request (400) response.
BadRequestResultA StatusCodeResult that when executed will produce a Bad Request (400) response.
BindAttributeThis attribute can be used on action parameters and types, to indicate model level metadata.
BindPropertiesAttributeAn attribute that enables binding for all properties the decorated controller or Razor Page model defines.
BindPropertyAttributeAn attribute that can specify a model name or type of IModelBinder to use for binding the associated property.
CacheProfileDefines a set of settings which can be used for response caching.
ChallengeResultAn ActionResult that on execution invokes HttpContext.ChallengeAsync.
ClientErrorDataInformation for producing client errors. This type is used to configure client errors produced by consumers of ClientErrorMapping.
ConflictObjectResultAn ObjectResult that when executed will produce a Conflict (409) response.
ConflictResultA StatusCodeResult that when executed will produce a Conflict (409) response.
ConsumesAttributeA filter that specifies the supported request content types. ContentTypes is used to select an action when there would otherwise be multiple matches.
ContentResultAn ActionResult that when executed will produce a response with content.
ControllerA base class for an MVC controller with view support.
ControllerAttributeIndicates that the type and any derived types that this attribute is applied to are considered a controller by the default controller discovery mechanism, unless NonControllerAttribute is applied to any type in the hierarchy.
ControllerBaseA base class for an MVC controller without view support.
ControllerContextThe context associated with the current request for a controller.
ControllerContextAttributeSpecifies that a controller property should be set with the current ControllerContext when creating the controller. The property must have a public set method.
CookieTempDataProviderOptionsProvides programmatic configuration for cookies set by CookieTempDataProvider
CreatedAtActionResultAn ActionResult that returns a Created (201) response with a Location header.
CreatedAtRouteResultAn ActionResult that returns a Created (201) response with a Location header.
CreatedResultAn ActionResult that returns a Created (201) response with a Location header.
DefaultApiConventionsDefault api conventions.
DisableRequestSizeLimitAttributeDisables the request body size limit.
EmptyResultRepresents an ActionResult that when executed will do nothing.
FileContentResultRepresents an ActionResult that when executed will write a binary file to the response.
FileResultRepresents an ActionResult that when executed will write a file as the response.
FileStreamResultRepresents an ActionResult that when executed will write a file from a stream to the response.
ForbidResultAn ActionResult that on execution invokes HttpContext.ForbidAsync.
FormatFilterAttributeA filter that will use the format value in the route data or query string to set the content type on an ObjectResult returned from an action.
FromBodyAttributeSpecifies that a parameter or property should be bound using the request body.
FromFormAttributeSpecifies that a parameter or property should be bound using form-data in the request body.
FromHeaderAttributeSpecifies that a parameter or property should be bound using the request headers.
FromQueryAttributeSpecifies that a parameter or property should be bound using the request query string.
FromRouteAttributeSpecifies that a parameter or property should be bound using route-data from the current request.
FromServicesAttributeSpecifies that a parameter or property should be bound using the request services.
HiddenInputAttributeIndicates associated property or all properties with the associated type should be edited using an <input> element of type "hidden".
HttpDeleteAttributeIdentifies an action that supports the HTTP DELETE method.
HttpGetAttributeIdentifies an action that supports the HTTP GET method.
HttpHeadAttributeIdentifies an action that supports the HTTP HEAD method.
HttpOptionsAttributeIdentifies an action that supports the HTTP OPTIONS method.
HttpPatchAttributeIdentifies an action that supports the HTTP PATCH method.
HttpPostAttributeIdentifies an action that supports the HTTP POST method.
HttpPutAttributeIdentifies an action that supports the HTTP PUT method.
IgnoreAntiforgeryTokenAttributeA filter that skips antiforgery token validation.
JsonOptionsOptions to configure SystemTextJsonInputFormatter and SystemTextJsonOutputFormatter.
JsonPatchExtensionsExtensions for JsonPatchDocument<TModel>
JsonResultAn action result which formats the given object as JSON.
LocalRedirectResultAn ActionResult that returns a Found (302), Moved Permanently (301), Temporary Redirect (307), or Permanent Redirect (308) response with a Location header to the supplied local URL.
MiddlewareFilterAttributeExecutes a middleware pipeline provided the by the ConfigurationType. The middleware pipeline will be treated as an async resource filter.
MiddlewareFilterAttribute<T>Executes a middleware pipeline provided the by the ConfigurationType. The middleware pipeline will be treated as an async resource filter.
ModelBinderAttributeAn attribute that can specify a model name or type of IModelBinder to use for binding.
ModelBinderAttribute<TBinder>An attribute that can specify a model name or type of IModelBinder to use for binding.
ModelMetadataTypeAttributeThis attribute specifies the metadata class to associate with a data model class.
ModelMetadataTypeAttribute<T>This attribute specifies the metadata class to associate with a data model class.
MvcJsonOptionsProvides programmatic configuration for JSON in the MVC framework.
MvcNewtonsoftJsonOptionsProvides programmatic configuration for JSON formatters using Newtonsoft.JSON.
MvcOptionsProvides programmatic configuration for the MVC framework.
MvcViewOptionsProvides programmatic configuration for views in the MVC framework.
NoContentResultA StatusCodeResult that when executed will produce a 204 No Content response.
NonActionAttributeIndicates that a controller method is not an action method.
NonControllerAttributeIndicates that the type and any derived types that this attribute is applied to is not considered a controller by the default controller discovery mechanism.
NonViewComponentAttributeIndicates that the type and any derived types that this attribute is applied to is not considered a view component by the default view component discovery mechanism.
NotFoundObjectResultAn ObjectResult that when executed will produce a Not Found (404) response.
NotFoundResultRepresents an StatusCodeResult that when executed will produce a Not Found (404) response.
ObjectResultAn ActionResult that on execution will write an object to the response using mechanisms provided by the host.
OkObjectResultAn ObjectResult that when executed performs content negotiation, formats the entity body, and will produce a Status200OK response if negotiation and formatting succeed.
OkResultAn StatusCodeResult that when executed will produce an empty Status200OK response.
PageRemoteAttributeA RemoteAttributeBase for razor page handler which configures Unobtrusive validation to send an Ajax request to the web site. The invoked handler should return JSON indicating whether the value is valid.
PartialViewResultRepresents an ActionResult that renders a partial view to the response.
PhysicalFileResultA FileResult on execution will write a file from disk to the response using mechanisms provided by the host.
ProblemDetailsA machine-readable format for specifying errors in HTTP API responses based on https://tools.ietf.org/html/rfc7807.
ProducesAttributeA filter that specifies the expected Type the action will return and the supported response content types. The ContentTypes value is used to set ContentTypes.
ProducesAttribute<T>A filter that specifies the expected Type the action will return and the supported response content types. The ContentTypes value is used to set ContentTypes.
ProducesDefaultResponseTypeAttributeA filter that specifies the Type for all HTTP status codes that are not covered by ProducesResponseTypeAttribute.
ProducesErrorResponseTypeAttributeSpecifies the type returned by default by controllers annotated with ApiControllerAttribute.
Type specifies the error model type associated with a ProducesResponseTypeAttribute for a client error (HTTP Status Code 4xx) when no value is provided. When no value is specified, MVC assumes the client error type to be ProblemDetails, if mapping client errors (ClientErrorMapping) is used.
Use this Attribute to configure the default error type if your application uses a custom error type to respond.
ProducesResponseTypeAttributeA filter that specifies the type of the value and status code returned by the action.
ProducesResponseTypeAttribute<T>A filter that specifies the type of the value and status code returned by the action.
RazorViewEngineOptionsSetupSets up default options for RazorViewEngineOptions.
RedirectResultAn ActionResult that returns a Found (302), Moved Permanently (301), Temporary Redirect (307), or Permanent Redirect (308) response with a Location header to the supplied URL.
RedirectToActionResultAn ActionResult that returns a Found (302), Moved Permanently (301), Temporary Redirect (307), or Permanent Redirect (308) response with a Location header. Targets a controller action.
RedirectToPageResultAn ActionResult that returns a Found (302) or Moved Permanently (301) response with a Location header. Targets a registered route.
RedirectToRouteResultAn ActionResult that returns a Found (302), Moved Permanently (301), Temporary Redirect (307), or Permanent Redirect (308) response with a Location header. Targets a registered route.
RemoteAttributeA RemoteAttributeBase for controllers which configures Unobtrusive validation to send an Ajax request to the web site. The invoked action should return JSON indicating whether the value is valid.
RemoteAttributeBaseA ValidationAttribute which configures Unobtrusive validation to send an Ajax request to the web site. The invoked endpoint should return JSON indicating whether the value is valid.
RequestFormLimitsAttributeSets the specified limits to the Form.
RequestSizeLimitAttributeSets the request body size limit to the specified size.
RequireHttpsAttributeAn authorization filter that confirms requests are received over HTTPS.
ResponseCacheAttributeSpecifies the parameters necessary for setting appropriate headers in response caching.
RouteAttributeSpecifies an attribute route on a controller.
SerializableErrorDefines a serializable container for storing ModelState information. This information is stored as key/value pairs.
ServiceFilterAttributeA filter that finds another filter in an IServiceProvider.
ServiceFilterAttribute<TFilter>A filter that finds another filter in an IServiceProvider.
SignInResultAn ActionResult that on execution invokes HttpContext.SignInAsync.
SignOutResultAn ActionResult that on execution invokes HttpContext.SignOutAsync.
SkipStatusCodePagesAttributeA filter that prevents execution of the StatusCodePages middleware.
StatusCodeResultRepresents an ActionResult that when executed will produce an HTTP response with the given response status code.
TempDataAttributeProperties decorated with TempDataAttribute will have their values stored in and loaded from the ITempDataDictionary. TempDataAttribute is supported on properties of Controllers, Razor Pages, and Razor Page Models.
TypeFilterAttributeA filter that creates another filter of type ImplementationType, retrieving missing constructor arguments from dependency injection if available there.
TypeFilterAttribute<TFilter>A filter that creates another filter of type ImplementationType, retrieving missing constructor arguments from dependency injection if available there.
UnauthorizedObjectResultAn ObjectResult that when executed will produce a Unauthorized (401) response.
UnauthorizedResultRepresents an UnauthorizedResult that when executed will produce an Unauthorized (401) response.
UnprocessableEntityObjectResultAn ObjectResult that when executed will produce a Unprocessable Entity (422) response.
UnprocessableEntityResultA StatusCodeResult that when executed will produce a Unprocessable Entity (422) response.
UnsupportedMediaTypeResultA StatusCodeResult that when executed will produce a UnsupportedMediaType (415) response.
UrlHelperExtensionsStatic class for url helper extension methods.
ValidateAntiForgeryTokenAttributeSpecifies that the class or method that this attribute is applied validates the anti-forgery token. If the anti-forgery token is not available, or if the token is invalid, the validation will fail and the action method will not execute.
ValidationProblemDetailsA ProblemDetails for validation errors.
ViewComponentA base class for view components.
ViewComponentAttributeIndicates the class and all subclasses are view components. Optionally specifies a view component's name. If defining a base class for multiple view components, associate this attribute with that base.
ViewComponentResultAn IActionResult which renders a view component to the response.
ViewDataAttributeProperties decorated with ViewDataAttribute will have their values stored in and loaded from the ViewDataDictionary. ViewDataDictionary is supported on properties of Controllers, and Razor Page handlers.
ViewResultRepresents an ActionResult that renders a view to the response.
VirtualFileResultA FileResult that on execution writes the file specified using a virtual path to the response using mechanisms provided by the host.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4