博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Asp.net MVC 4 动作方法结果
阅读量:4955 次
发布时间:2019-06-12

本文共 1807 字,大约阅读时间需要 6 分钟。

Action Method Result动作方法结果

 

ActionResult

generic return value for an action and is used to perform a framework-level operation on behalf of the action method.

通用的返回值的一个动作,是用来代表的动作方法执行框架级操作。

ContentResult

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

要返回用户定义的内容类型的操作方法是这样的结果。

EmptyResult

To return nothing from a Controller action

从控制器动作返回空

FileContentResult

Sends the contents of a binary file to the response.

一个二进制文件中的内容发送到响应中。

FilePathResult

Sends the contents of a file to the response.

一个文件中的内容发送到响应中。

FileResult

To return the content of a file to the browser

要返回的内容的一个文件浏览器

FileStreamResult

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

二进制内容发送到响应通过使用流实例。

HttpNotFoundResult

To return 404 status-code to indicate that the requested resource was not found.

要返回404状态代码表示请求的资源没有被发现。

HttpStatusCodeResult

To return specific HTTP response status code and description.

若要返回特定HTTP响应状态代码和说明。

HttpUnauthorizedResult

To return 401 status code to indicate unauthorized HTTP request.

要返回401状态代码表示授权的HTTP请求。

JsonResult

To return a serialized JSON object.

要返回一个序列化的JSON对象。

JavaScriptResult

To return a script that can be executed on the client.

返回一个脚本,可以在客户端上执行。

PartialViewResult

To render a partial view (fx. just a user control)

若要呈现局部的视图(只是一个用户控制)

RedirectResult

To redirect to a specified URI.

要重定向到指定的URI。

RedirectToRouteResult

to redirect to a route

重定向路由

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.

代表绑定值到一个动作方法的参数属性(如从表单Post或查询字符串),或者参数本身的结果。

ViewEngineResult

Represents the result of locating a view engine.

代表定位视图引擎的结果。

ViewResult

To Render a view as a Web page.

要为网页渲染视图。

转载于:https://www.cnblogs.com/yangzhenping/p/3346248.html

你可能感兴趣的文章
SQL中Group By的使用
查看>>
错误org/aopalliance/intercept/MethodInterceptor解决方法
查看>>
Pylint在项目中的使用
查看>>
使用nginx做反向代理和负载均衡效果图
查看>>
access remote libvirtd
查看>>
(4) Orchard 开发之 Page 的信息存在哪?
查看>>
ASP.NET中 GridView(网格视图)的使用前台绑定
查看>>
Haskell学习-高阶函数
查看>>
PC-XP系统忘记密码怎么办
查看>>
深入了解Oracle ASM(二):ASM File number 1 文件目录
查看>>
Boosting(提升方法)之AdaBoost
查看>>
链接元素<a>
查看>>
Binding object to winForm controller through VS2010 Designer(通过VS2010设计器将对象绑定到winForm控件上)...
查看>>
Spring Boot实战笔记(二)-- Spring常用配置(Scope、Spring EL和资源调用)
查看>>
第二章:webdriver 控制浏览器窗口大小
查看>>
【动态规划】流水作业调度问题与Johnson法则
查看>>
Python&Selenium&Unittest&BeautifuReport 自动化测试并生成HTML自动化测试报告
查看>>
活现被翻转生命
查看>>
POJ 1228
查看>>
SwaggerUI+SpringMVC——构建RestFul API的可视化界面
查看>>