MvcForm 构造函数

定义

重载

MvcForm(HttpResponseBase)
已过时.

使用指定的 HTTP 响应对象初始化 类的新实例 MvcForm

MvcForm(ViewContext)

使用指定的视图上下文初始化 类的新实例 MvcForm

MvcForm(HttpResponseBase)

注意

This constructor is obsolete, because its functionality has been moved to MvcForm(ViewContext) now.

使用指定的 HTTP 响应对象初始化 类的新实例 MvcForm

[System.Obsolete("This constructor is obsolete, because its functionality has been moved to MvcForm(ViewContext) now.", true)]
public MvcForm (System.Web.HttpResponseBase httpResponse);
new System.Web.Mvc.Html.MvcForm : System.Web.HttpResponseBase -> System.Web.Mvc.Html.MvcForm
Public Sub New (httpResponse As HttpResponseBase)

参数

httpResponse
HttpResponseBase

HTTP 响应对象。

属性

例外

参数 httpResponse 为 null。

适用于

MvcForm(ViewContext)

使用指定的视图上下文初始化 类的新实例 MvcForm

public MvcForm (System.Web.Mvc.ViewContext viewContext);
new System.Web.Mvc.Html.MvcForm : System.Web.Mvc.ViewContext -> System.Web.Mvc.Html.MvcForm
Public Sub New (viewContext As ViewContext)

参数

viewContext
ViewContext

对呈现视图所需信息进行封装的对象。

例外

viewContext 参数为 null。

适用于