PageRenderTime 59ms CodeModel.GetById 18ms RepoModel.GetById 0ms app.codeStats 2ms

/Source/Libraries/ASPnetMVC3/System.Web.Mvc.xml

#
XML | 6625 lines | 6625 code | 0 blank | 0 comment | 0 complexity | 245c657836a0f042f8bab663f0a78c19 MD5 | raw file
Possible License(s): CC-BY-SA-3.0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <doc>
  3. <assembly>
  4. <name>System.Web.Mvc</name>
  5. </assembly>
  6. <members>
  7. <member name="T:System.Web.Mvc.AcceptVerbsAttribute">
  8. <summary>Represents an attribute that specifies which HTTP verbs an action method will respond to.</summary>
  9. </member>
  10. <member name="M:System.Web.Mvc.AcceptVerbsAttribute.#ctor(System.String[])">
  11. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.AcceptVerbsAttribute" /> class by using a list of HTTP verbs that the action method will respond to.</summary>
  12. <param name="verbs">The HTTP verbs that the action method will respond to.</param>
  13. <exception cref="T:System.ArgumentException">The <paramref name="verbs" /> parameter is null or zero length.</exception>
  14. </member>
  15. <member name="M:System.Web.Mvc.AcceptVerbsAttribute.#ctor(System.Web.Mvc.HttpVerbs)">
  16. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.AcceptVerbsAttribute" /> class using the HTTP verbs that the action method will respond to.</summary>
  17. <param name="verbs">The HTTP verbs that the action method will respond to.</param>
  18. </member>
  19. <member name="M:System.Web.Mvc.AcceptVerbsAttribute.IsValidForRequest(System.Web.Mvc.ControllerContext,System.Reflection.MethodInfo)">
  20. <summary>Determines whether the specified method information is valid for the specified controller context.</summary>
  21. <returns>true if the method information is valid; otherwise, false.</returns>
  22. <param name="controllerContext">The controller context.</param>
  23. <param name="methodInfo">The method information.</param>
  24. <exception cref="T:System.ArgumentNullException">The <paramref name="controllerContext " />parameter is null.</exception>
  25. </member>
  26. <member name="P:System.Web.Mvc.AcceptVerbsAttribute.Verbs">
  27. <summary>Gets or sets the list of HTTP verbs that the action method will respond to.</summary>
  28. <returns>The list of HTTP verbs that the action method will respond to.</returns>
  29. </member>
  30. <member name="T:System.Web.Mvc.ActionDescriptor">
  31. <summary>Provides information about an action method, such as its name, controller, parameters, attributes, and filters.</summary>
  32. </member>
  33. <member name="M:System.Web.Mvc.ActionDescriptor.#ctor">
  34. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ActionDescriptor" /> class.</summary>
  35. </member>
  36. <member name="P:System.Web.Mvc.ActionDescriptor.ActionName">
  37. <summary>Gets the name of the action method.</summary>
  38. <returns>The name of the action method.</returns>
  39. </member>
  40. <member name="P:System.Web.Mvc.ActionDescriptor.ControllerDescriptor">
  41. <summary>Gets the controller descriptor.</summary>
  42. <returns>The controller descriptor.</returns>
  43. </member>
  44. <member name="M:System.Web.Mvc.ActionDescriptor.Execute(System.Web.Mvc.ControllerContext,System.Collections.Generic.IDictionary{System.String,System.Object})">
  45. <summary>Executes the action method by using the specified parameters and controller context.</summary>
  46. <returns>The result of executing the action method.</returns>
  47. <param name="controllerContext">The controller context.</param>
  48. <param name="parameters">The parameters of the action method.</param>
  49. </member>
  50. <member name="M:System.Web.Mvc.ActionDescriptor.GetCustomAttributes(System.Boolean)">
  51. <summary>Returns an array of custom attributes that are defined for this member, excluding named attributes.</summary>
  52. <returns>An array of custom attributes, or an empty array if no custom attributes exist.</returns>
  53. <param name="inherit">true to look up the hierarchy chain for the inherited custom attribute; otherwise, false.</param>
  54. <exception cref="T:System.TypeLoadException">The custom attribute type cannot be loaded.</exception>
  55. <exception cref="T:System.Reflection.AmbiguousMatchException">There is more than one attribute of type <paramref name="attributeType" /> defined for this member.</exception>
  56. </member>
  57. <member name="M:System.Web.Mvc.ActionDescriptor.GetCustomAttributes(System.Type,System.Boolean)">
  58. <summary>Returns an array of custom attributes that are defined for this member, identified by type.</summary>
  59. <returns>An array of custom attributes, or an empty array if no custom attributes of the specified type exist.</returns>
  60. <param name="attributeType">The type of the custom attributes.</param>
  61. <param name="inherit">true to look up the hierarchy chain for the inherited custom attribute; otherwise, false.</param>
  62. <exception cref="T:System.TypeLoadException">The custom attribute type cannot be loaded.</exception>
  63. <exception cref="T:System.Reflection.AmbiguousMatchException">There is more than one attribute of type <paramref name="attributeType" /> defined for this member.</exception>
  64. <exception cref="T:System.ArgumentNullException">The <paramref name="attritubeType" /> parameter is null.</exception>
  65. </member>
  66. <member name="M:System.Web.Mvc.ActionDescriptor.GetFilters">
  67. <summary>Returns the filters that are associated with this action method.</summary>
  68. <returns>The filters that are associated with this action method.</returns>
  69. </member>
  70. <member name="M:System.Web.Mvc.ActionDescriptor.GetParameters">
  71. <summary>Returns the parameters of the action method.</summary>
  72. <returns>The parameters of the action method.</returns>
  73. </member>
  74. <member name="M:System.Web.Mvc.ActionDescriptor.GetSelectors">
  75. <summary>Returns the action-method selectors.</summary>
  76. <returns>The action-method selectors.</returns>
  77. </member>
  78. <member name="M:System.Web.Mvc.ActionDescriptor.IsDefined(System.Type,System.Boolean)">
  79. <summary>Determines whether one or more instances of the specified attribute type are defined for this member.</summary>
  80. <returns>true if <paramref name="attributeType" /> is defined for this member; otherwise, false.</returns>
  81. <param name="attributeType">The type of the custom attribute.</param>
  82. <param name="inherit">true to look up the hierarchy chain for the inherited custom attribute; otherwise, false.</param>
  83. <exception cref="T:System.ArgumentNullException">The <paramref name="attritubeType" /> parameter is null.</exception>
  84. </member>
  85. <member name="P:System.Web.Mvc.ActionDescriptor.UniqueId">
  86. <summary>Gets the unique ID for the action descriptor using lazy initialization.</summary>
  87. <returns>The unique ID.</returns>
  88. </member>
  89. <member name="T:System.Web.Mvc.ActionExecutedContext">
  90. <summary>Provides the context for the ActionExecuted method of the <see cref="T:System.Web.Mvc.ActionFilterAttribute" /> class.</summary>
  91. </member>
  92. <member name="M:System.Web.Mvc.ActionExecutedContext.#ctor">
  93. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ActionExecutedContext" /> class.</summary>
  94. </member>
  95. <member name="M:System.Web.Mvc.ActionExecutedContext.#ctor(System.Web.Mvc.ControllerContext,System.Web.Mvc.ActionDescriptor,System.Boolean,System.Exception)">
  96. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ActionExecutedContext" /> class.</summary>
  97. <param name="controllerContext">The controller context.</param>
  98. <param name="actionDescriptor">The action method descriptor.</param>
  99. <param name="canceled">true if the action is canceled.</param>
  100. <param name="exception">The exception object.</param>
  101. <exception cref="T:System.ArgumentNullException">The <paramref name="actionDescriptor" /> parameter is null.</exception>
  102. </member>
  103. <member name="P:System.Web.Mvc.ActionExecutedContext.ActionDescriptor">
  104. <summary>Gets or sets the action descriptor.</summary>
  105. <returns>The action descriptor.</returns>
  106. </member>
  107. <member name="P:System.Web.Mvc.ActionExecutedContext.Canceled">
  108. <summary>Gets or sets a value that indicates that this <see cref="T:System.Web.Mvc.ActionExecutedContext" /> object is canceled.</summary>
  109. <returns>true if the context canceled; otherwise, false.</returns>
  110. </member>
  111. <member name="P:System.Web.Mvc.ActionExecutedContext.Exception">
  112. <summary>Gets or sets the exception that occurred during the execution of the action method, if any.</summary>
  113. <returns>The exception that occurred during the execution of the action method.</returns>
  114. </member>
  115. <member name="P:System.Web.Mvc.ActionExecutedContext.ExceptionHandled">
  116. <summary>Gets or sets a value that indicates whether the exception is handled.</summary>
  117. <returns>true if the exception is handled; otherwise, false.</returns>
  118. </member>
  119. <member name="P:System.Web.Mvc.ActionExecutedContext.Result">
  120. <summary>Gets or sets the result returned by the action method.</summary>
  121. <returns>The result returned by the action method.</returns>
  122. </member>
  123. <member name="T:System.Web.Mvc.ActionExecutingContext">
  124. <summary>Provides the context for the ActionExecuting method of the <see cref="T:System.Web.Mvc.ActionFilterAttribute" /> class.</summary>
  125. </member>
  126. <member name="M:System.Web.Mvc.ActionExecutingContext.#ctor">
  127. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ActionExecutingContext" /> class.</summary>
  128. </member>
  129. <member name="M:System.Web.Mvc.ActionExecutingContext.#ctor(System.Web.Mvc.ControllerContext,System.Web.Mvc.ActionDescriptor,System.Collections.Generic.IDictionary{System.String,System.Object})">
  130. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ActionExecutingContext" /> class by using the specified controller context, action descriptor, and action-method parameters.</summary>
  131. <param name="controllerContext">The controller context.</param>
  132. <param name="actionDescriptor">The action descriptor.</param>
  133. <param name="actionParameters">The action-method parameters.</param>
  134. <exception cref="T:System.ArgumentNullException">The <paramref name="ActionParameters" /> or <paramref name="actionDescriptor" /> parameter is null.</exception>
  135. </member>
  136. <member name="P:System.Web.Mvc.ActionExecutingContext.ActionDescriptor">
  137. <summary>Gets or sets the action descriptor.</summary>
  138. <returns>The action descriptor.</returns>
  139. </member>
  140. <member name="P:System.Web.Mvc.ActionExecutingContext.ActionParameters">
  141. <summary>Gets or sets the action-method parameters.</summary>
  142. <returns>The action-method parameters.</returns>
  143. </member>
  144. <member name="P:System.Web.Mvc.ActionExecutingContext.Result">
  145. <summary>Gets or sets the result that is returned by the action method.</summary>
  146. <returns>The result that is returned by the action method.</returns>
  147. </member>
  148. <member name="T:System.Web.Mvc.ActionFilterAttribute">
  149. <summary>Represents the base class for all action-filter attributes.</summary>
  150. </member>
  151. <member name="M:System.Web.Mvc.ActionFilterAttribute.#ctor">
  152. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ActionFilterAttribute" /> class.</summary>
  153. </member>
  154. <member name="M:System.Web.Mvc.ActionFilterAttribute.OnActionExecuted(System.Web.Mvc.ActionExecutedContext)">
  155. <summary>Called by the MVC framework after the action method executes.</summary>
  156. <param name="filterContext">The filter context.</param>
  157. </member>
  158. <member name="M:System.Web.Mvc.ActionFilterAttribute.OnActionExecuting(System.Web.Mvc.ActionExecutingContext)">
  159. <summary>Called by the MVC framework before the action method executes.</summary>
  160. <param name="filterContext">The filter context.</param>
  161. </member>
  162. <member name="M:System.Web.Mvc.ActionFilterAttribute.OnResultExecuted(System.Web.Mvc.ResultExecutedContext)">
  163. <summary>Called by the MVC framework after the action result executes.</summary>
  164. <param name="filterContext">The filter context.</param>
  165. </member>
  166. <member name="M:System.Web.Mvc.ActionFilterAttribute.OnResultExecuting(System.Web.Mvc.ResultExecutingContext)">
  167. <summary>Called by the MVC framework before the action result executes.</summary>
  168. <param name="filterContext">The filter context.</param>
  169. </member>
  170. <member name="T:System.Web.Mvc.ActionMethodSelectorAttribute">
  171. <summary>Represents an attribute that is used to influence the selection of an action method.</summary>
  172. </member>
  173. <member name="M:System.Web.Mvc.ActionMethodSelectorAttribute.#ctor">
  174. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ActionMethodSelectorAttribute" /> class.</summary>
  175. </member>
  176. <member name="M:System.Web.Mvc.ActionMethodSelectorAttribute.IsValidForRequest(System.Web.Mvc.ControllerContext,System.Reflection.MethodInfo)">
  177. <summary>Determines whether the action method selection is valid for the specified controller context.</summary>
  178. <returns>true if the action method selection is valid for the specified controller context; otherwise, false.</returns>
  179. <param name="controllerContext">The controller context.</param>
  180. <param name="methodInfo">Information about the action method.</param>
  181. </member>
  182. <member name="T:System.Web.Mvc.ActionNameAttribute">
  183. <summary>Represents an attribute that is used for the name of an action.</summary>
  184. </member>
  185. <member name="M:System.Web.Mvc.ActionNameAttribute.#ctor(System.String)">
  186. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ActionNameAttribute" /> class.</summary>
  187. <param name="name">Name of the action.</param>
  188. <exception cref="T:System.ArgumentException">The <paramref name="name" /> parameter is null or empty.</exception>
  189. </member>
  190. <member name="M:System.Web.Mvc.ActionNameAttribute.IsValidName(System.Web.Mvc.ControllerContext,System.String,System.Reflection.MethodInfo)">
  191. <summary>Determines whether the action name is valid within the specified controller context.</summary>
  192. <returns>true if the action name is valid within the specified controller context; otherwise, false.</returns>
  193. <param name="controllerContext">The controller context.</param>
  194. <param name="actionName">The name of the action.</param>
  195. <param name="methodInfo">Information about the action method.</param>
  196. </member>
  197. <member name="P:System.Web.Mvc.ActionNameAttribute.Name">
  198. <summary>Gets or sets the name of the action.</summary>
  199. <returns>The name of the action.</returns>
  200. </member>
  201. <member name="T:System.Web.Mvc.ActionNameSelectorAttribute">
  202. <summary>Represents an attribute that affects the selection of an action method.</summary>
  203. </member>
  204. <member name="M:System.Web.Mvc.ActionNameSelectorAttribute.#ctor">
  205. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ActionNameSelectorAttribute" /> class.</summary>
  206. </member>
  207. <member name="M:System.Web.Mvc.ActionNameSelectorAttribute.IsValidName(System.Web.Mvc.ControllerContext,System.String,System.Reflection.MethodInfo)">
  208. <summary>Determines whether the action name is valid in the specified controller context.</summary>
  209. <returns>true if the action name is valid in the specified controller context; otherwise, false.</returns>
  210. <param name="controllerContext">The controller context.</param>
  211. <param name="actionName">The name of the action.</param>
  212. <param name="methodInfo">Information about the action method.</param>
  213. </member>
  214. <member name="T:System.Web.Mvc.ActionResult">
  215. <summary>Encapsulates the result of an action method and is used to perform a framework-level operation on behalf of the action method.</summary>
  216. </member>
  217. <member name="M:System.Web.Mvc.ActionResult.#ctor">
  218. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ActionResult" /> class.</summary>
  219. </member>
  220. <member name="M:System.Web.Mvc.ActionResult.ExecuteResult(System.Web.Mvc.ControllerContext)">
  221. <summary>Enables processing of the result of an action method by a custom type that inherits from the <see cref="T:System.Web.Mvc.ActionResult" /> class.</summary>
  222. <param name="context">The context in which the result is executed. The context information includes the controller, HTTP content, request context, and route data.</param>
  223. </member>
  224. <member name="T:System.Web.Mvc.ActionSelector">
  225. <summary>Represents a delegate that contains the logic for selecting an action method.</summary>
  226. <returns>true if an action method was successfully selected; otherwise, false.</returns>
  227. <param name="controllerContext">The current HTTP request context.</param>
  228. </member>
  229. <member name="T:System.Web.Mvc.AdditionalMetadataAttribute">
  230. <summary>Implements the <see cref="T:System.Web.Mvc.IMetadataAware" /> interface to support additional metadata. </summary>
  231. </member>
  232. <member name="M:System.Web.Mvc.AdditionalMetadataAttribute.#ctor(System.String,System.Object)"></member>
  233. <member name="P:System.Web.Mvc.AdditionalMetadataAttribute.Name"></member>
  234. <member name="M:System.Web.Mvc.AdditionalMetadataAttribute.OnMetadataCreated(System.Web.Mvc.ModelMetadata)"></member>
  235. <member name="P:System.Web.Mvc.AdditionalMetadataAttribute.TypeId"></member>
  236. <member name="P:System.Web.Mvc.AdditionalMetadataAttribute.Value"></member>
  237. <member name="T:System.Web.Mvc.AjaxHelper">
  238. <summary>Represents support for rendering HTML in AJAX scenarios within a view.</summary>
  239. </member>
  240. <member name="M:System.Web.Mvc.AjaxHelper.#ctor(System.Web.Mvc.ViewContext,System.Web.Mvc.IViewDataContainer)">
  241. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.AjaxHelper" /> class using the specified view context and view data container.</summary>
  242. <param name="viewContext">The view context.</param>
  243. <param name="viewDataContainer">The view data container.</param>
  244. <exception cref="T:System.ArgumentNullException">One or both of the parameters is null.</exception>
  245. </member>
  246. <member name="M:System.Web.Mvc.AjaxHelper.#ctor(System.Web.Mvc.ViewContext,System.Web.Mvc.IViewDataContainer,System.Web.Routing.RouteCollection)">
  247. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.AjaxHelper" /> class by using the specified view context, view data container, and route collection.</summary>
  248. <param name="viewContext">The view context.</param>
  249. <param name="viewDataContainer">The view data container.</param>
  250. <param name="routeCollection">The URL route collection.</param>
  251. <exception cref="T:System.ArgumentNullException">One or more of the parameters is null.</exception>
  252. </member>
  253. <member name="P:System.Web.Mvc.AjaxHelper.GlobalizationScriptPath">
  254. <summary>Gets or sets the root path for the location to use for globalization script files.</summary>
  255. <returns>The location of the folder where globalization script files are stored. The default location is "~/Scripts/Globalization".</returns>
  256. </member>
  257. <member name="M:System.Web.Mvc.AjaxHelper.JavaScriptStringEncode(System.String)">
  258. <summary>Serializes the specified message and returns the resulting JSON-formatted string.</summary>
  259. <returns>The serialized message as a JSON-formatted string.</returns>
  260. <param name="message">The message to serialize.</param>
  261. </member>
  262. <member name="P:System.Web.Mvc.AjaxHelper.RouteCollection">
  263. <summary>Gets the collection of URL routes for the application.</summary>
  264. <returns>The collection of routes for the application.</returns>
  265. </member>
  266. <member name="P:System.Web.Mvc.AjaxHelper.ViewContext">
  267. <summary>Gets the context information about the view.</summary>
  268. <returns>The context of the view.</returns>
  269. </member>
  270. <member name="P:System.Web.Mvc.AjaxHelper.ViewData">
  271. <summary>Gets the current view data dictionary.</summary>
  272. <returns>The view data dictionary.</returns>
  273. </member>
  274. <member name="P:System.Web.Mvc.AjaxHelper.ViewDataContainer">
  275. <summary>Gets the view data container.</summary>
  276. <returns>The view data container.</returns>
  277. </member>
  278. <member name="T:System.Web.Mvc.AjaxHelper`1">
  279. <summary>Represents support for rendering HTML in AJAX scenarios within a strongly typed view.</summary>
  280. <typeparam name="TModel">The type of the model.</typeparam>
  281. </member>
  282. <member name="M:System.Web.Mvc.AjaxHelper`1.#ctor(System.Web.Mvc.ViewContext,System.Web.Mvc.IViewDataContainer)">
  283. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.AjaxHelper`1" /> class by using the specified view context and view data container.</summary>
  284. <param name="viewContext">The view context.</param>
  285. <param name="viewDataContainer">The view data container.</param>
  286. </member>
  287. <member name="M:System.Web.Mvc.AjaxHelper`1.#ctor(System.Web.Mvc.ViewContext,System.Web.Mvc.IViewDataContainer,System.Web.Routing.RouteCollection)">
  288. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.AjaxHelper`1" /> class by using the specified view context, view data container, and URL route collection.</summary>
  289. <param name="viewContext">The view context.</param>
  290. <param name="viewDataContainer">The view data container.</param>
  291. <param name="routeCollection">The URL route collection.</param>
  292. </member>
  293. <member name="P:System.Web.Mvc.AjaxHelper`1.ViewData">
  294. <summary>Gets the strongly typed version of the view data dictionary.</summary>
  295. <returns>The strongly typed data dictionary of the view.</returns>
  296. </member>
  297. <member name="T:System.Web.Mvc.AjaxRequestExtensions">
  298. <summary>Represents a class that extends the <see cref="T:System.Web.HttpRequestBase" /> class by adding the ability to determine whether an HTTP request is an AJAX request.</summary>
  299. </member>
  300. <member name="M:System.Web.Mvc.AjaxRequestExtensions.IsAjaxRequest(System.Web.HttpRequestBase)"></member>
  301. <member name="T:System.Web.Mvc.AreaRegistration">
  302. <summary>Provides a way to register one or more areas in an ASP.NET MVC application.</summary>
  303. </member>
  304. <member name="M:System.Web.Mvc.AreaRegistration.#ctor">
  305. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.AreaRegistration" /> class.</summary>
  306. </member>
  307. <member name="P:System.Web.Mvc.AreaRegistration.AreaName">
  308. <summary>Gets the name of the area to register.</summary>
  309. <returns>The name of the area to register.</returns>
  310. </member>
  311. <member name="M:System.Web.Mvc.AreaRegistration.RegisterAllAreas">
  312. <summary>Registers all areas in an ASP.NET MVC application.</summary>
  313. </member>
  314. <member name="M:System.Web.Mvc.AreaRegistration.RegisterAllAreas(System.Object)">
  315. <summary>Registers all areas in an ASP.NET MVC application by using the specified user-defined information.</summary>
  316. <param name="state">An object that contains user-defined information to pass to the area.</param>
  317. </member>
  318. <member name="M:System.Web.Mvc.AreaRegistration.RegisterArea(System.Web.Mvc.AreaRegistrationContext)">
  319. <summary>Registers an area in an ASP.NET MVC application using the specified area's context information.</summary>
  320. <param name="context">Encapsulates the information that is required in order to register the area.</param>
  321. </member>
  322. <member name="T:System.Web.Mvc.AreaRegistrationContext">
  323. <summary>Encapsulates the information that is required in order to register an area within an ASP.NET MVC application.</summary>
  324. </member>
  325. <member name="M:System.Web.Mvc.AreaRegistrationContext.#ctor(System.String,System.Web.Routing.RouteCollection)">
  326. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.AreaRegistrationContext" /> class using the specified area name and routes collection.</summary>
  327. <param name="areaName">The name of the area to register.</param>
  328. <param name="routes">The collection of routes for the application.</param>
  329. </member>
  330. <member name="M:System.Web.Mvc.AreaRegistrationContext.#ctor(System.String,System.Web.Routing.RouteCollection,System.Object)">
  331. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.AreaRegistrationContext" /> class using the specified area name, routes collection, and user-defined data.</summary>
  332. <param name="areaName">The name of the area to register.</param>
  333. <param name="routes">The collection of routes for the application.</param>
  334. <param name="state">An object that contains user-defined information to pass to the area.</param>
  335. </member>
  336. <member name="P:System.Web.Mvc.AreaRegistrationContext.AreaName">
  337. <summary>Gets the name of the area to register.</summary>
  338. <returns>The name of the area to register.</returns>
  339. </member>
  340. <member name="M:System.Web.Mvc.AreaRegistrationContext.MapRoute(System.String,System.String)">
  341. <summary>Maps the specified URL route and associates it with the area that is specified by the <see cref="P:System.Web.Mvc.AreaRegistrationContext.AreaName" /> property.</summary>
  342. <returns>A reference to the mapped route.</returns>
  343. <param name="name">The name of the route.</param>
  344. <param name="url">The URL pattern for the route.</param>
  345. <exception cref="T:System.ArgumentNullException">The <paramref name="url" /> parameter is null.</exception>
  346. </member>
  347. <member name="M:System.Web.Mvc.AreaRegistrationContext.MapRoute(System.String,System.String,System.Object)">
  348. <summary>Maps the specified URL route and associates it with the area that is specified by the <see cref="P:System.Web.Mvc.AreaRegistrationContext.AreaName" /> property, using the specified route default values.</summary>
  349. <returns>A reference to the mapped route.</returns>
  350. <param name="name">The name of the route.</param>
  351. <param name="url">The URL pattern for the route.</param>
  352. <param name="defaults">An object that contains default route values.</param>
  353. <exception cref="T:System.ArgumentNullException">The <paramref name="url" /> parameter is null.</exception>
  354. </member>
  355. <member name="M:System.Web.Mvc.AreaRegistrationContext.MapRoute(System.String,System.String,System.Object,System.Object)">
  356. <summary>Maps the specified URL route and associates it with the area that is specified by the <see cref="P:System.Web.Mvc.AreaRegistrationContext.AreaName" /> property, using the specified route default values and constraint.</summary>
  357. <returns>A reference to the mapped route.</returns>
  358. <param name="name">The name of the route.</param>
  359. <param name="url">The URL pattern for the route.</param>
  360. <param name="defaults">An object that contains default route values.</param>
  361. <param name="constraints">A set of expressions that specify valid values for a URL parameter.</param>
  362. <exception cref="T:System.ArgumentNullException">The <paramref name="url" /> parameter is null.</exception>
  363. </member>
  364. <member name="M:System.Web.Mvc.AreaRegistrationContext.MapRoute(System.String,System.String,System.Object,System.Object,System.String[])">
  365. <summary>Maps the specified URL route and associates it with the area that is specified by the <see cref="P:System.Web.Mvc.AreaRegistrationContext.AreaName" /> property, using the specified route default values, constraints, and namespaces.</summary>
  366. <returns>A reference to the mapped route.</returns>
  367. <param name="name">The name of the route.</param>
  368. <param name="url">The URL pattern for the route.</param>
  369. <param name="defaults">An object that contains default route values.</param>
  370. <param name="constraints">A set of expressions that specify valid values for a URL parameter.</param>
  371. <param name="namespaces">An enumerable set of namespaces for the application.</param>
  372. <exception cref="T:System.ArgumentNullException">The <paramref name="url" /> parameter is null.</exception>
  373. </member>
  374. <member name="M:System.Web.Mvc.AreaRegistrationContext.MapRoute(System.String,System.String,System.Object,System.String[])">
  375. <summary>Maps the specified URL route and associates it with the area that is specified by the <see cref="P:System.Web.Mvc.AreaRegistrationContext.AreaName" /> property, using the specified route default values and namespaces.</summary>
  376. <returns>A reference to the mapped route.</returns>
  377. <param name="name">The name of the route.</param>
  378. <param name="url">The URL pattern for the route.</param>
  379. <param name="defaults">An object that contains default route values.</param>
  380. <param name="namespaces">An enumerable set of namespaces for the application.</param>
  381. <exception cref="T:System.ArgumentNullException">The <paramref name="url" /> parameter is null.</exception>
  382. </member>
  383. <member name="M:System.Web.Mvc.AreaRegistrationContext.MapRoute(System.String,System.String,System.String[])">
  384. <summary>Maps the specified URL route and associates it with the area that is specified by the <see cref="P:System.Web.Mvc.AreaRegistrationContext.AreaName" /> property, using the specified namespaces.</summary>
  385. <returns>A reference to the mapped route.</returns>
  386. <param name="name">The name of the route.</param>
  387. <param name="url">The URL pattern for the route.</param>
  388. <param name="namespaces">An enumerable set of namespaces for the application.</param>
  389. <exception cref="T:System.ArgumentNullException">The <paramref name="url" /> parameter is null.</exception>
  390. </member>
  391. <member name="P:System.Web.Mvc.AreaRegistrationContext.Namespaces">
  392. <summary>Gets the namespaces for the application.</summary>
  393. <returns>An enumerable set of namespaces for the application.</returns>
  394. </member>
  395. <member name="P:System.Web.Mvc.AreaRegistrationContext.Routes">
  396. <summary>Gets a collection of defined routes for the application.</summary>
  397. <returns>A collection of defined routes for the application.</returns>
  398. </member>
  399. <member name="P:System.Web.Mvc.AreaRegistrationContext.State">
  400. <summary>Gets an object that contains user-defined information to pass to the area.</summary>
  401. <returns>An object that contains user-defined information to pass to the area.</returns>
  402. </member>
  403. <member name="T:System.Web.Mvc.AssociatedMetadataProvider">
  404. <summary>Provides an abstract class to implement a metadata provider.</summary>
  405. </member>
  406. <member name="M:System.Web.Mvc.AssociatedMetadataProvider.#ctor">
  407. <summary>Called from constructors in a derived class to initialize the <see cref="T:System.Web.Mvc.AssociatedMetadataProvider" /> class.</summary>
  408. </member>
  409. <member name="M:System.Web.Mvc.AssociatedMetadataProvider.CreateMetadata(System.Collections.Generic.IEnumerable{System.Attribute},System.Type,System.Func`1,System.Void,System.Object)">
  410. <summary>When overridden in a derived class, creates the model metadata for the property.</summary>
  411. <returns>The model metadata for the property.</returns>
  412. <param name="attributes">The set of attributes.</param>
  413. <param name="containerType">The type of the container.</param>
  414. <param name="modelAccessor">The model accessor.</param>
  415. <param name="modelType">The type of the model.</param>
  416. <param name="propertyName">The name of the property.</param>
  417. </member>
  418. <member name="M:System.Web.Mvc.AssociatedMetadataProvider.FilterAttributes(System.Type,System.ComponentModel.PropertyDescriptor,System.Collections.Generic.IEnumerable{System.Attribute})">
  419. <summary>Gets a list of attributes.</summary>
  420. <returns>A list of attributes.</returns>
  421. <param name="containerType">The type of the container.</param>
  422. <param name="propertyDescriptor">The property descriptor.</param>
  423. <param name="attributes">The attribute container.</param>
  424. </member>
  425. <member name="M:System.Web.Mvc.AssociatedMetadataProvider.GetMetadataForProperties(System.Object,System.Type)">
  426. <summary>Returns a list of properties for the model.</summary>
  427. <returns>A list of properties for the model.</returns>
  428. <param name="container">The model container.</param>
  429. <param name="containerType">The type of the container.</param>
  430. </member>
  431. <member name="M:System.Web.Mvc.AssociatedMetadataProvider.GetMetadataForProperty(System.Func`1,System.Void,System.Object)">
  432. <summary>Returns the metadata for the specified property using the container type and property descriptor.</summary>
  433. <returns>Returns <see cref="T:System.Web.Mvc.ModelMetadata" />.</returns>
  434. <param name="modelAccessor">The model accessor.</param>
  435. <param name="containerType">The type of the container.</param>
  436. <param name="propertyDescriptor">The property descriptor</param>
  437. </member>
  438. <member name="M:System.Web.Mvc.AssociatedMetadataProvider.GetMetadataForType(System.Func`1,System.Void)">
  439. <summary>Returns the metadata for the specified property using the type of the model.</summary>
  440. <returns>Returns <see cref="T:System.Web.Mvc.ModelMetadata" />.</returns>
  441. <param name="modelAccessor">The model accessor.</param>
  442. <param name="modelType">The type of the model.</param>
  443. </member>
  444. <member name="M:System.Web.Mvc.AssociatedMetadataProvider.GetTypeDescriptor(System.Type)">
  445. <summary>Returns the type descriptor from the specified type.</summary>
  446. <returns>The type descriptor.</returns>
  447. <param name="type">The type.</param>
  448. </member>
  449. <member name="T:System.Web.Mvc.AssociatedValidatorProvider">
  450. <summary>Provides an abstract class for classes that implement a validation provider.</summary>
  451. </member>
  452. <member name="M:System.Web.Mvc.AssociatedValidatorProvider.#ctor">
  453. <summary>Called from constructors in derived classes to initialize the <see cref="T:System.Web.Mvc.AssociatedMetadataProvider" /> class.</summary>
  454. </member>
  455. <member name="M:System.Web.Mvc.AssociatedValidatorProvider.GetTypeDescriptor(System.Type)">
  456. <summary>Gets a type descriptor for the specified type.</summary>
  457. <returns>A type descriptor for the specified type.</returns>
  458. <param name="type">The type of the validation provider.</param>
  459. </member>
  460. <member name="M:System.Web.Mvc.AssociatedValidatorProvider.GetValidators(System.Web.Mvc.ModelMetadata,System.Web.Mvc.ControllerContext)">
  461. <summary>Gets the validators for the model using the metadata and controller context.</summary>
  462. <returns>The validators for the model.</returns>
  463. <param name="metadata">The metadata.</param>
  464. <param name="context">The controller context.</param>
  465. </member>
  466. <member name="M:System.Web.Mvc.AssociatedValidatorProvider.GetValidators(System.Web.Mvc.ModelMetadata,System.Web.Mvc.ControllerContext,System.Collections.Generic.IEnumerable{System.Attribute})">
  467. <summary>Gets the validators for the model using the metadata, the controller context, and a list of attributes.</summary>
  468. <returns>The validators for the model.</returns>
  469. <param name="metadata">The metadata.</param>
  470. <param name="context">The controller context.</param>
  471. <param name="attributes">The list of attributes.</param>
  472. </member>
  473. <member name="T:System.Web.Mvc.AsyncController">
  474. <summary>Provides the base class for asynchronous controllers.</summary>
  475. </member>
  476. <member name="M:System.Web.Mvc.AsyncController.#ctor">
  477. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.AsyncController" /> class.</summary>
  478. </member>
  479. <member name="P:System.Web.Mvc.AsyncController.AsyncManager">
  480. <summary>Gets the asynchronous manager instance.</summary>
  481. <returns>The asynchronous manager instance.</returns>
  482. </member>
  483. <member name="M:System.Web.Mvc.AsyncController.BeginExecute(System.Web.Routing.RequestContext,System.AsyncCallback,System.Object)">
  484. <summary>Called by ASP.NET to initialize asynchronous request processing.</summary>
  485. <returns>The status of the asynchronous operation.</returns>
  486. <param name="requestContext">The request context.</param>
  487. <param name="callback">The asynchronous callback method.</param>
  488. <param name="state">The state object.</param>
  489. </member>
  490. <member name="M:System.Web.Mvc.AsyncController.BeginExecuteCore(System.AsyncCallback,System.Object)">
  491. <summary>Called by ASP.NET during initialization of asynchronous request processing.</summary>
  492. <returns>The status of the asynchronous operation.</returns>
  493. <param name="callback">The asynchronous callback method.</param>
  494. <param name="state">The state object.</param>
  495. </member>
  496. <member name="M:System.Web.Mvc.AsyncController.CreateActionInvoker">
  497. <summary>Creates an action invoker.</summary>
  498. <returns>An action invoker.</returns>
  499. </member>
  500. <member name="M:System.Web.Mvc.AsyncController.EndExecute(System.IAsyncResult)">
  501. <summary>Cancels the execution of an asynchronous action method.</summary>
  502. <param name="asyncResult">The status of the asynchronous result.</param>
  503. </member>
  504. <member name="M:System.Web.Mvc.AsyncController.EndExecuteCore(System.IAsyncResult)">
  505. <summary>Called by ASP.NET when the current asynchronous action has completed.</summary>
  506. <param name="asyncResult">The status of the asynchronous result.</param>
  507. </member>
  508. <member name="M:System.Web.Mvc.AsyncController.System#Web#Mvc#Async#IAsyncController#BeginExecute(System.Web.Routing.RequestContext,System.AsyncCallback,System.Object)">
  509. <summary>Called by ASP.NET to begin the execution of an asynchronous action method.</summary>
  510. <returns>The status of the asynchronous operation.</returns>
  511. <param name="requestContext">The request context.</param>
  512. <param name="callback">The asynchronous callback method.</param>
  513. <param name="state">An object that contains information to be used by the callback method. This parameter can be null.</param>
  514. </member>
  515. <member name="M:System.Web.Mvc.AsyncController.System#Web#Mvc#Async#IAsyncController#EndExecute(System.IAsyncResult)">
  516. <summary>Cancels the execution of an asynchronous action method by ASP.NET at the end of the execution of an asynchronous action method.</summary>
  517. <param name="asyncResult">The status of the asynchronous result.</param>
  518. </member>
  519. <member name="T:System.Web.Mvc.AsyncTimeoutAttribute">
  520. <summary>Represents an attribute that is used to set the timeout value, in milliseconds, for an asynchronous method.</summary>
  521. </member>
  522. <member name="M:System.Web.Mvc.AsyncTimeoutAttribute.#ctor(System.Int32)">
  523. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.AsyncTimeoutAttribute" /> class.</summary>
  524. <param name="duration">The timeout value, in milliseconds.</param>
  525. </member>
  526. <member name="P:System.Web.Mvc.AsyncTimeoutAttribute.Duration">
  527. <summary>Gets the timeout duration, in milliseconds.</summary>
  528. <returns>The timeout duration, in milliseconds.</returns>
  529. </member>
  530. <member name="M:System.Web.Mvc.AsyncTimeoutAttribute.OnActionExecuting(System.Web.Mvc.ActionExecutingContext)">
  531. <summary>Called by ASP.NET before the asynchronous action method executes.</summary>
  532. <param name="filterContext">The filter context.</param>
  533. </member>
  534. <member name="T:System.Web.Mvc.AuthorizationContext">
  535. <summary>Encapsulates the information that is required for using an <see cref="T:System.Web.Mvc.AuthorizeAttribute" /> attribute.</summary>
  536. </member>
  537. <member name="M:System.Web.Mvc.AuthorizationContext.#ctor">
  538. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.AuthorizationContext" /> class.</summary>
  539. </member>
  540. <member name="M:System.Web.Mvc.AuthorizationContext.#ctor(System.Web.Mvc.ControllerContext)">
  541. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.AuthorizationContext" /> class using the specified controller context.</summary>
  542. <param name="controllerContext">The context within which the result is executed. The context information includes the controller, HTTP content, request context, and route data.</param>
  543. </member>
  544. <member name="M:System.Web.Mvc.AuthorizationContext.#ctor(System.Web.Mvc.ControllerContext,System.Web.Mvc.ActionDescriptor)">
  545. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.AuthorizationContext" /> class using the specified controller context and action descriptor.</summary>
  546. <param name="controllerContext">The context in which the result is executed. The context information includes the controller, HTTP content, request context, and route data.</param>
  547. <param name="actionDescriptor">An object that provides information about an action method, such as its name, controller, parameters, attributes, and filters.</param>
  548. </member>
  549. <member name="P:System.Web.Mvc.AuthorizationContext.ActionDescriptor">
  550. <summary>Provides information about the action method that is marked by the <see cref="T:System.Web.Mvc.AuthorizeAttribute" /> attribute, such as its name, controller, parameters, attributes, and filters.</summary>
  551. <returns>The action descriptor for the action method that is marked by the <see cref="T:System.Web.Mvc.AuthorizeAttribute" /> attribute.</returns>
  552. </member>
  553. <member name="P:System.Web.Mvc.AuthorizationContext.Result">
  554. <summary>Gets or sets the result that is returned by an action method.</summary>
  555. <returns>The result that is returned by an action method.</returns>
  556. </member>
  557. <member name="T:System.Web.Mvc.AuthorizeAttribute">
  558. <summary>Represents an attribute that is used to restrict access by callers to an action method.</summary>
  559. </member>
  560. <member name="M:System.Web.Mvc.AuthorizeAttribute.#ctor">
  561. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.AuthorizeAttribute" /> class.</summary>
  562. </member>
  563. <member name="M:System.Web.Mvc.AuthorizeAttribute.AuthorizeCore(System.Web.HttpContextBase)">
  564. <summary>When overridden, provides an entry point for custom authorization checks.</summary>
  565. <returns>true if the user is authorized; otherwise, false.</returns>
  566. <param name="httpContext">The HTTP context, which encapsulates all HTTP-specific information about an individual HTTP request.</param>
  567. <exception cref="T:System.ArgumentNullException">The <paramref name="httpContext" /> parameter is null.</exception>
  568. </member>
  569. <member name="M:System.Web.Mvc.AuthorizeAttribute.HandleUnauthorizedRequest(System.Web.Mvc.AuthorizationContext)">
  570. <summary>Processes HTTP requests that fail authorization.</summary>
  571. <param name="filterContext">Encapsulates the information for using <see cref="T:System.Web.Mvc.AuthorizeAttribute" />. The <paramref name="filterContext" /> object contains the controller, HTTP context, request context, action result, and route data.</param>
  572. </member>
  573. <member name="M:System.Web.Mvc.AuthorizeAttribute.OnAuthorization(System.Web.Mvc.AuthorizationContext)">
  574. <summary>Called when a process requests authorization.</summary>
  575. <param name="filterContext">The filter context, which encapsulates information for using <see cref="T:System.Web.Mvc.AuthorizeAttribute" />.</param>
  576. <exception cref="T:System.ArgumentNullException">The <paramref name="filterContext" /> parameter is null.</exception>
  577. </member>
  578. <member name="M:System.Web.Mvc.AuthorizeAttribute.OnCacheAuthorization(System.Web.HttpContextBase)">
  579. <summary>Called when the caching module requests authorization.</summary>
  580. <returns>A reference to the validation status.</returns>
  581. <param name="httpContext">The HTTP context, which encapsulates all HTTP-specific information about an individual HTTP request.</param>
  582. <exception cref="T:System.ArgumentNullException">The <paramref name="httpContext" /> parameter is null.</exception>
  583. </member>
  584. <member name="P:System.Web.Mvc.AuthorizeAttribute.Roles">
  585. <summary>Gets or sets the user roles.</summary>
  586. <returns>The user roles.</returns>
  587. </member>
  588. <member name="P:System.Web.Mvc.AuthorizeAttribute.TypeId">
  589. <summary>Gets the unique identifier for this attribute.</summary>
  590. <returns>The unique identifier for this attribute.</returns>
  591. </member>
  592. <member name="P:System.Web.Mvc.AuthorizeAttribute.Users">
  593. <summary>Gets or sets the authorized users.</summary>
  594. <returns>The authorized users.</returns>
  595. </member>
  596. <member name="T:System.Web.Mvc.BindAttribute">
  597. <summary>Represents an attribute that is used to provide details about how model binding to a parameter should occur.</summary>
  598. </member>
  599. <member name="M:System.Web.Mvc.BindAttribute.#ctor">
  600. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.BindAttribute" /> class.</summary>
  601. </member>
  602. <member name="P:System.Web.Mvc.BindAttribute.Exclude">
  603. <summary>Gets or sets a comma-delimited list of property names for which binding is not allowed.</summary>
  604. <returns>The exclude list.</returns>
  605. </member>
  606. <member name="P:System.Web.Mvc.BindAttribute.Include">
  607. <summary>Gets or sets a comma-delimited list of property names for which binding is allowed.</summary>
  608. <returns>The include list.</returns>
  609. </member>
  610. <member name="M:System.Web.Mvc.BindAttribute.IsPropertyAllowed(System.String)">
  611. <summary>Determines whether the specified property is allowed.</summary>
  612. <returns>true if the specified property is allowed; otherwise, false.</returns>
  613. <param name="propertyName">The name of the property.</param>
  614. </member>
  615. <member name="P:System.Web.Mvc.BindAttribute.Prefix">
  616. <summary>Gets or sets the prefix to use when markup is rendered for binding to an action argument or to a model property.</summary>
  617. <returns>The prefix to use.</returns>
  618. </member>
  619. <member name="T:System.Web.Mvc.BuildManagerCompiledView">
  620. <summary>Represents the base class for views that are compiled by the BuildManager class before being rendered by a view engine.</summary>
  621. </member>
  622. <member name="M:System.Web.Mvc.BuildManagerCompiledView.#ctor(System.Web.Mvc.ControllerContext,System.String)">
  623. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.BuildManagerCompiledView" /> class using the specified controller context and view path.</summary>
  624. <param name="controllerContext">The controller context.</param>
  625. <param name="viewPath">The view path.</param>
  626. </member>
  627. <member name="M:System.Web.Mvc.BuildManagerCompiledView.#ctor(System.Web.Mvc.ControllerContext,System.String,System.Web.Mvc.IViewPageActivator)">
  628. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.BuildManagerCompiledView" /> class using the specified controller context, view path, and view page activator.</summary>
  629. <param name="controllerContext">Context information for the current controller. This information includes the HTTP context, request context, route data, parent action view context, and more.</param>
  630. <param name="viewPath">The path to the view that will be rendered.</param>
  631. <param name="viewPageActivator">The object responsible for dynamically constructing the view page at run time. </param>
  632. <exception cref="T:System.ArgumentNullException">The <paramref name="controllerContext" /> parameter is null.</exception>
  633. <exception cref="T:System.ArgumentException">The <paramref name="viewPath" /> parameter is null or empty.</exception>
  634. </member>
  635. <member name="M:System.Web.Mvc.BuildManagerCompiledView.Render(System.Web.Mvc.ViewContext,System.IO.TextWriter)">
  636. <summary>Renders the specified view context by using the specified the writer object.</summary>
  637. <param name="viewContext">Information related to rendering a view, such as view data, temporary data, and form context.</param>
  638. <param name="writer">The writer object.</param>
  639. <exception cref="T:System.ArgumentNullException">The <paramref name="viewContext" /> parameter is null.</exception>
  640. <exception cref="T:SInvalidOperationException">An instance of the view type could not be created.</exception>
  641. </member>
  642. <member name="M:System.Web.Mvc.BuildManagerCompiledView.RenderView(System.Web.Mvc.ViewContext,System.IO.TextWriter,System.Object)">
  643. <summary>When overridden in a derived class, renders the specified view context by using the specified writer object and object instance.</summary>
  644. <param name="viewContext">Information related to rendering a view, such as view data, temporary data, and form context.</param>
  645. <param name="writer">The writer object.</param>
  646. <param name="instance">An object that contains additional information that can be used in the view.</param>
  647. </member>
  648. <member name="P:System.Web.Mvc.BuildManagerCompiledView.ViewPath">
  649. <summary>Gets or sets the view path.</summary>
  650. <returns>The view path.</returns>
  651. </member>
  652. <member name="T:System.Web.Mvc.BuildManagerViewEngine">
  653. <summary>Provides a base class for view engines.</summary>
  654. </member>
  655. <member name="M:System.Web.Mvc.BuildManagerViewEngine.#ctor">
  656. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.BuildManagerViewEngine" /> class.</summary>
  657. </member>
  658. <member name="M:System.Web.Mvc.BuildManagerViewEngine.#ctor(System.Web.Mvc.IViewPageActivator)">
  659. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.BuildManagerViewEngine" /> class using the specified view page activator.</summary>
  660. <param name="viewPageActivator">The view page activator.</param>
  661. </member>
  662. <member name="M:System.Web.Mvc.BuildManagerViewEngine.FileExists(System.Web.Mvc.ControllerContext,System.String)">
  663. <summary>Gets a value that indicates whether a file exists in the specified virtual file system (path).</summary>
  664. <returns>true if the file exists in the virtual file system; otherwise, false.</returns>
  665. <param name="controllerContext">The controller context.</param>
  666. <param name="virtualPath">The virtual path.</param>
  667. </member>
  668. <member name="P:System.Web.Mvc.BuildManagerViewEngine.ViewPageActivator">
  669. <summary>Gets the view page activator.</summary>
  670. <returns>The view page activator.</returns>
  671. </member>
  672. <member name="T:System.Web.Mvc.ByteArrayModelBinder">
  673. <summary>Maps a browser request to a byte array.</summary>
  674. </member>
  675. <member name="M:System.Web.Mvc.ByteArrayModelBinder.#ctor">
  676. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ByteArrayModelBinder" /> class.</summary>
  677. </member>
  678. <member name="M:System.Web.Mvc.ByteArrayModelBinder.BindModel(System.Web.Mvc.ControllerContext,System.Web.Mvc.ModelBindingContext)">
  679. <summary>Binds the model by using the specified controller context and binding context.</summary>
  680. <returns>The bound data object.</returns>
  681. <param name="controllerContext">The context within which the controller operates. The context information includes the controller, HTTP content, request context, and route data.</param>
  682. <param name="bindingContext">The context within which the model is bound. The context includes information such as the model object, model name, model type, property filter, and value provider.</param>
  683. <exception cref="T:System.ArgumentNullException">The <paramref name="bindingContext" /> parameter is null.</exception>
  684. </member>
  685. <member name="T:System.Web.Mvc.ChildActionOnlyAttribute">
  686. <summary>Represents an attribute that is used to indicate that an action method should be called only as a child action.</summary>
  687. </member>
  688. <member name="M:System.Web.Mvc.ChildActionOnlyAttribute.#ctor">
  689. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ChildActionOnlyAttribute" /> class.</summary>
  690. </member>
  691. <member name="M:System.Web.Mvc.ChildActionOnlyAttribute.OnAuthorization(System.Web.Mvc.AuthorizationContext)">
  692. <summary>Called when authorization is required.</summary>
  693. <param name="filterContext">An object that encapsulates the information that is required in order to authorize access to the child action.</param>
  694. </member>
  695. <member name="T:System.Web.Mvc.ClientDataTypeModelValidatorProvider">
  696. <summary>Returns the client data-type model validators.</summary>
  697. </member>
  698. <member name="M:System.Web.Mvc.ClientDataTypeModelValidatorProvider.#ctor">
  699. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ClientDataTypeModelValidatorProvider" /> class.</summary>
  700. </member>
  701. <member name="M:System.Web.Mvc.ClientDataTypeModelValidatorProvider.GetValidators(System.Web.Mvc.ModelMetadata,System.Web.Mvc.ControllerContext)">
  702. <summary>Returns the client data-type model validators.</summary>
  703. <returns>The client data-type model validators.</returns>
  704. <param name="metadata">The metadata.</param>
  705. <param name="context">The context.</param>
  706. </member>
  707. <member name="T:System.Web.Mvc.CompareAttribute">
  708. <summary>Provides an attribute that compares two properties of a model.</summary>
  709. </member>
  710. <member name="M:System.Web.Mvc.CompareAttribute.#ctor(System.String)">
  711. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.CompareAttribute" /> class.</summary>
  712. <param name="otherProperty">The property to compare with the current property.</param>
  713. </member>
  714. <member name="M:System.Web.Mvc.CompareAttribute.FormatErrorMessage(System.String)">
  715. <summary>Applies formatting to an error message based on the data field where the compare error occurred.</summary>
  716. <returns>The formatted error message.</returns>
  717. <param name="name">The name of the field that caused the validation failure.</param>
  718. </member>
  719. <member name="M:System.Web.Mvc.CompareAttribute.FormatPropertyForClientValidation(System.String)">
  720. <summary>Formats the property for client validation by prepending an asterisk (*) and a dot.</summary>
  721. <returns>The string "*." is prepended to the property.</returns>
  722. <param name="property">The property.</param>
  723. </member>
  724. <member name="M:System.Web.Mvc.CompareAttribute.GetClientValidationRules(System.Web.Mvc.ModelMetadata,System.Web.Mvc.ControllerContext)">
  725. <summary>Gets a list of compare-value client validation rules for the property using the specified model metadata and controller context.</summary>
  726. <returns>A list of compare-value client validation rules.</returns>
  727. <param name="metadata">The model metadata.</param>
  728. <param name="context">The controller context.</param>
  729. </member>
  730. <member name="P:System.Web.Mvc.CompareAttribute.OtherProperty">
  731. <summary>Gets the property to compare with the current property.</summary>
  732. <returns>The property to compare with the current property.</returns>
  733. </member>
  734. <member name="T:System.Web.Mvc.ContentResult">
  735. <summary>Represents a user-defined content type that is the result of an action method.</summary>
  736. </member>
  737. <member name="M:System.Web.Mvc.ContentResult.#ctor">
  738. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ContentResult" /> class.</summary>
  739. </member>
  740. <member name="P:System.Web.Mvc.ContentResult.Content">
  741. <summary>Gets or sets the content.</summary>
  742. <returns>The content.</returns>
  743. </member>
  744. <member name="P:System.Web.Mvc.ContentResult.ContentEncoding">
  745. <summary>Gets or sets the content encoding.</summary>
  746. <returns>The content encoding.</returns>
  747. </member>
  748. <member name="P:System.Web.Mvc.ContentResult.ContentType">
  749. <summary>Gets or sets the type of the content.</summary>
  750. <returns>The type of the content.</returns>
  751. </member>
  752. <member name="M:System.Web.Mvc.ContentResult.ExecuteResult(System.Web.Mvc.ControllerContext)">
  753. <summary>Enables processing of the result of an action method by a custom type that inherits from the <see cref="T:System.Web.Mvc.ActionResult" /> class.</summary>
  754. <param name="context">The context within which the result is executed.</param>
  755. <exception cref="T:System.ArgumentNullException">The <paramref name="context" /> parameter is null.</exception>
  756. </member>
  757. <member name="T:System.Web.Mvc.Controller">
  758. <summary>Provides methods that respond to HTTP requests that are made to an ASP.NET MVC Web site.</summary>
  759. </member>
  760. <member name="M:System.Web.Mvc.Controller.#ctor">
  761. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.Controller" /> class.</summary>
  762. </member>
  763. <member name="P:System.Web.Mvc.Controller.ActionInvoker">
  764. <summary>Gets the action invoker for the controller.</summary>
  765. <returns>The action invoker.</returns>
  766. </member>
  767. <member name="P:System.Web.Mvc.Controller.Binders">
  768. <summary>Gets or sets the binder.</summary>
  769. <returns>The binder.</returns>
  770. </member>
  771. <member name="M:System.Web.Mvc.Controller.Content(System.String)">
  772. <summary>Creates a content result object by using a string.</summary>
  773. <returns>The content result instance.</returns>
  774. <param name="content">The content to write to the response.</param>
  775. </member>
  776. <member name="M:System.Web.Mvc.Controller.Content(System.String,System.String)">
  777. <summary>Creates a content result object by using a string and the content type. </summary>
  778. <returns>The content result instance.</returns>
  779. <param name="content">The content to write to the response.</param>
  780. <param name="contentType">The content type (MIME type).</param>
  781. </member>
  782. <member name="M:System.Web.Mvc.Controller.Content(System.String,System.String,System.Text.Encoding)">
  783. <summary>Creates a content result object by using a string, the content type, and content encoding.</summary>
  784. <returns>The content result instance.</returns>
  785. <param name="content">The content to write to the response.</param>
  786. <param name="contentType">The content type (MIME type).</param>
  787. <param name="contentEncoding">The content encoding.</param>
  788. </member>
  789. <member name="M:System.Web.Mvc.Controller.CreateActionInvoker">
  790. <summary>Creates an action invoker.</summary>
  791. <returns>An action invoker.</returns>
  792. </member>
  793. <member name="M:System.Web.Mvc.Controller.CreateTempDataProvider">
  794. <summary>Creates a temporary data provider.</summary>
  795. <returns>A temporary data provider.</returns>
  796. </member>
  797. <member name="M:System.Web.Mvc.Controller.Dispose">
  798. <summary>Releases all resources that are used by the current instance of the <see cref="T:System.Web.Mvc.Controller" /> class.</summary>
  799. </member>
  800. <member name="M:System.Web.Mvc.Controller.Dispose(System.Boolean)">
  801. <summary>Releases unmanaged resources and optionally releases managed resources.</summary>
  802. <param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources.</param>
  803. </member>
  804. <member name="M:System.Web.Mvc.Controller.ExecuteCore">
  805. <summary>Invokes the action in the current controller context.</summary>
  806. </member>
  807. <member name="M:System.Web.Mvc.Controller.File(System.Byte[],System.String)">
  808. <summary>Creates a <see cref="T:System.Web.Mvc.FileContentResult" /> object by using the file contents and file type.</summary>
  809. <returns>The file-content result object.</returns>
  810. <param name="fileContents">The binary content to send to the response.</param>
  811. <param name="contentType">The content type (MIME type).</param>
  812. </member>
  813. <member name="M:System.Web.Mvc.Controller.File(System.Byte[],System.String,System.String)">
  814. <summary>Creates a <see cref="T:System.Web.Mvc.FileContentResult" /> object by using the file contents, content type, and the destination file name.</summary>
  815. <returns>The file-content result object.</returns>
  816. <param name="fileContents">The binary content to send to the response.</param>
  817. <param name="contentType">The content type (MIME type).</param>
  818. <param name="fileDownloadName">The file name to use in the file-download dialog box that is displayed in the browser.</param>
  819. </member>
  820. <member name="M:System.Web.Mvc.Controller.File(System.IO.Stream,System.String)">
  821. <summary>Creates a <see cref="T:System.Web.Mvc.FileStreamResult" /> object by using the <see cref="T:System.IO.Stream" /> object and content type. </summary>
  822. <returns>The file-content result object.</returns>
  823. <param name="fileStream">The stream to send to the response.</param>
  824. <param name="contentType">The content type (MIME type).</param>
  825. </member>
  826. <member name="M:System.Web.Mvc.Controller.File(System.IO.Stream,System.String,System.String)">
  827. <summary>Creates a <see cref="T:System.Web.Mvc.FileStreamResult" /> object using the <see cref="T:System.IO.Stream" /> object, the content type, and the target file name. </summary>
  828. <returns>The file-stream result object.</returns>
  829. <param name="fileStream">The stream to send to the response.</param>
  830. <param name="contentType">The content type (MIME type)</param>
  831. <param name="fileDownloadName">The file name to use in the file-download dialog box that is displayed in the browser.</param>
  832. </member>
  833. <member name="M:System.Web.Mvc.Controller.File(System.String,System.String)">
  834. <summary>Creates a <see cref="T:System.Web.Mvc.FilePathResult" /> object by using the file name and the content type.</summary>
  835. <returns>The file-stream result object.</returns>
  836. <param name="fileName">The path of the file to send to the response.</param>
  837. <param name="contentType">The content type (MIME type).</param>
  838. </member>
  839. <member name="M:System.Web.Mvc.Controller.File(System.String,System.String,System.String)">
  840. <summary>Creates a <see cref="T:System.Web.Mvc.FilePathResult" /> object by using the file name, the content type, and the file download name.</summary>
  841. <returns>The file-stream result object.</returns>
  842. <param name="fileName">The path of the file to send to the response.</param>
  843. <param name="contentType">The content type (MIME type).</param>
  844. <param name="fileDownloadName">The file name to use in the file-download dialog box that is displayed in the browser.</param>
  845. </member>
  846. <member name="M:System.Web.Mvc.Controller.HandleUnknownAction(System.String)">
  847. <summary>Called when a request matches this controller, but no method with the specified action name is found in the controller.</summary>
  848. <param name="actionName">The name of the attempted action.</param>
  849. </member>
  850. <member name="P:System.Web.Mvc.Controller.HttpContext">
  851. <summary>Gets HTTP-specific information about an individual HTTP request.</summary>
  852. <returns>The HTTP context.</returns>
  853. </member>
  854. <member name="M:System.Web.Mvc.Controller.HttpNotFound"></member>
  855. <member name="M:System.Web.Mvc.Controller.HttpNotFound(System.String)">
  856. <summary>Returns an instance of the <see cref="T:System.Web.Mvc.HttpNotFoundResult" /> class.</summary>
  857. <returns>An instance of the <see cref="T:System.Web.Mvc.HttpNotFoundResult" /> class.</returns>
  858. <param name="statusDescription">The status description.</param>
  859. </member>
  860. <member name="M:System.Web.Mvc.Controller.Initialize(System.Web.Routing.RequestContext)">
  861. <summary>Initializes data that might not be available when the constructor is called.</summary>
  862. <param name="requestContext">The HTTP context and route data.</param>
  863. </member>
  864. <member name="M:System.Web.Mvc.Controller.JavaScript(System.String)">
  865. <summary>Creates a <see cref="T:System.Web.Mvc.JavaScriptResult" /> object.</summary>
  866. <returns>The <see cref="T:System.Web.Mvc.JavaScriptResult" /> object that writes the script to the response.</returns>
  867. <param name="script">The JavaScript code to run on the client</param>
  868. </member>
  869. <member name="M:System.Web.Mvc.Controller.Json(System.Object)">
  870. <summary>Creates a <see cref="T:System.Web.Mvc.JsonResult" /> object that serializes the specified object to JavaScript Object Notation (JSON).</summary>
  871. <returns>The JSON result object that serializes the specified object to JSON format. The result object that is prepared by this method is written to the response by the ASP.NET MVC framework when the object is executed.</returns>
  872. <param name="data">The JavaScript object graph to serialize.</param>
  873. </member>
  874. <member name="M:System.Web.Mvc.Controller.Json(System.Object,System.String)">
  875. <summary>Creates a <see cref="T:System.Web.Mvc.JsonResult" /> object that serializes the specified object to JavaScript Object Notation (JSON) format.</summary>
  876. <returns>The JSON result object that serializes the specified object to JSON format.</returns>
  877. <param name="data">The JavaScript object graph to serialize.</param>
  878. <param name="contentType">The content type (MIME type).</param>
  879. </member>
  880. <member name="M:System.Web.Mvc.Controller.Json(System.Object,System.String,System.Text.Encoding)">
  881. <summary>Creates a <see cref="T:System.Web.Mvc.JsonResult" /> object that serializes the specified object to JavaScript Object Notation (JSON) format.</summary>
  882. <returns>The JSON result object that serializes the specified object to JSON format.</returns>
  883. <param name="data">The JavaScript object graph to serialize.</param>
  884. <param name="contentType">The content type (MIME type).</param>
  885. <param name="contentEncoding">The content encoding.</param>
  886. </member>
  887. <member name="M:System.Web.Mvc.Controller.Json(System.Object,System.String,System.Text.Encoding,System.Web.Mvc.JsonRequestBehavior)">
  888. <summary>Creates a <see cref="T:System.Web.Mvc.JsonResult" /> object that serializes the specified object to JavaScript Object Notation (JSON) format using the content type, content encoding, and the JSON request behavior.</summary>
  889. <returns>The result object that serializes the specified object to JSON format.</returns>
  890. <param name="data">The JavaScript object graph to serialize.</param>
  891. <param name="contentType">The content type (MIME type).</param>
  892. <param name="contentEncoding">The content encoding.</param>
  893. <param name="behavior">The JSON request behavior </param>
  894. </member>
  895. <member name="M:System.Web.Mvc.Controller.Json(System.Object,System.String,System.Web.Mvc.JsonRequestBehavior)">
  896. <summary>Creates a <see cref="T:System.Web.Mvc.JsonResult" /> object that serializes the specified object to JavaScript Object Notation (JSON) format using the specified content type and JSON request behavior.</summary>
  897. <returns>The result object that serializes the specified object to JSON format.</returns>
  898. <param name="data">The JavaScript object graph to serialize.</param>
  899. <param name="contentType">The content type (MIME type).</param>
  900. <param name="behavior">The JSON request behavior</param>
  901. </member>
  902. <member name="M:System.Web.Mvc.Controller.Json(System.Object,System.Web.Mvc.JsonRequestBehavior)">
  903. <summary>Creates a <see cref="T:System.Web.Mvc.JsonResult" /> object that serializes the specified object to JavaScript Object Notation (JSON) format using the specified JSON request behavior.</summary>
  904. <returns>The result object that serializes the specified object to JSON format.</returns>
  905. <param name="data">The JavaScript object graph to serialize.</param>
  906. <param name="behavior">The content type (MIME type).</param>
  907. </member>
  908. <member name="P:System.Web.Mvc.Controller.ModelState">
  909. <summary>Gets the model state dictionary object that contains the state of the model and of model-binding validation.</summary>
  910. <returns>The model state dictionary.</returns>
  911. </member>
  912. <member name="M:System.Web.Mvc.Controller.OnActionExecuted(System.Web.Mvc.ActionExecutedContext)">
  913. <summary>Called after the action method is invoked.</summary>
  914. <param name="filterContext">Information about the current request and action.</param>
  915. </member>
  916. <member name="M:System.Web.Mvc.Controller.OnActionExecuting(System.Web.Mvc.ActionExecutingContext)">
  917. <summary>Called before the action method is invoked.</summary>
  918. <param name="filterContext">Information about the current request and action.</param>
  919. </member>
  920. <member name="M:System.Web.Mvc.Controller.OnAuthorization(System.Web.Mvc.AuthorizationContext)">
  921. <summary>Called when authorization occurs.</summary>
  922. <param name="filterContext">Information about the current request and action.</param>
  923. </member>
  924. <member name="M:System.Web.Mvc.Controller.OnException(System.Web.Mvc.ExceptionContext)">
  925. <summary>Called when an unhandled exception occurs in the action.</summary>
  926. <param name="filterContext">Information about the current request and action.</param>
  927. </member>
  928. <member name="M:System.Web.Mvc.Controller.OnResultExecuted(System.Web.Mvc.ResultExecutedContext)">
  929. <summary>Called after the action result that is returned by an action method is executed.</summary>
  930. <param name="filterContext">Information about the current request and action result</param>
  931. </member>
  932. <member name="M:System.Web.Mvc.Controller.OnResultExecuting(System.Web.Mvc.ResultExecutingContext)">
  933. <summary>Called before the action result that is returned by an action method is executed.</summary>
  934. <param name="filterContext">Information about the current request and action result</param>
  935. </member>
  936. <member name="M:System.Web.Mvc.Controller.PartialView">
  937. <summary>Creates a <see cref="T:System.Web.Mvc.PartialViewResult" /> object that renders a partial view.</summary>
  938. <returns>A partial-view result object.</returns>
  939. </member>
  940. <member name="M:System.Web.Mvc.Controller.PartialView(System.Object)">
  941. <summary>Creates a <see cref="T:System.Web.Mvc.PartialViewResult" /> object that renders a partial view, by using the specified model. </summary>
  942. <returns>A partial-view result object.</returns>
  943. <param name="model">The model that is rendered by the partial view</param>
  944. </member>
  945. <member name="M:System.Web.Mvc.Controller.PartialView(System.String)">
  946. <summary>Creates a <see cref="T:System.Web.Mvc.PartialViewResult" /> object that renders a partial view, by using the specified view name. </summary>
  947. <returns>A partial-view result object.</returns>
  948. <param name="viewName">The name of the view that is rendered to the response.</param>
  949. </member>
  950. <member name="M:System.Web.Mvc.Controller.PartialView(System.String,System.Object)">
  951. <summary>Creates a <see cref="T:System.Web.Mvc.PartialViewResult" /> object that renders a partial view, by using the specified view name and model. </summary>
  952. <returns>A partial-view result object.</returns>
  953. <param name="viewName">The name of the view that is rendered to the response.</param>
  954. <param name="model">The model that is rendered by the partial view</param>
  955. </member>
  956. <member name="M:System.Web.Mvc.Controller.Redirect(System.String)">
  957. <summary>Creates a <see cref="T:System.Web.Mvc.RedirectResult" /> object that redirects to the specified URL.</summary>
  958. <returns>The redirect result object.</returns>
  959. <param name="url">The URL to redirect to.</param>
  960. </member>
  961. <member name="M:System.Web.Mvc.Controller.RedirectPermanent(System.String)">
  962. <summary>Returns an instance of the <see cref="T:System.Web.Mvc.RedirectResult" /> class with the <see cref="P:System.Web.Mvc.RedirectResult.Permanent" /> property set to true.</summary>
  963. <returns>An instance of the <see cref="T:System.Web.Mvc.RedirectResult" /> class with the <see cref="P:System.Web.Mvc.RedirectResult.Permanent" /> property set to true.</returns>
  964. <param name="url">The URL to redirect to.</param>
  965. </member>
  966. <member name="M:System.Web.Mvc.Controller.RedirectToAction(System.String)">
  967. <summary>Redirects to the specified action using the action name.</summary>
  968. <returns>The redirect result object.</returns>
  969. <param name="actionName">The name of the action.</param>
  970. </member>
  971. <member name="M:System.Web.Mvc.Controller.RedirectToAction(System.String,System.Object)">
  972. <summary>Redirects to the specified action using the action name and route values.</summary>
  973. <returns>The redirect result object.</returns>
  974. <param name="actionName">The name of the action.</param>
  975. <param name="routeValues">The parameters for a route. </param>
  976. </member>
  977. <member name="M:System.Web.Mvc.Controller.RedirectToAction(System.String,System.String)">
  978. <summary>Redirects to the specified action using the action name and controller name.</summary>
  979. <returns>The redirect result object.</returns>
  980. <param name="actionName">The name of the action.</param>
  981. <param name="controllerName">The name of the controller</param>
  982. </member>
  983. <member name="M:System.Web.Mvc.Controller.RedirectToAction(System.String,System.String,System.Object)">
  984. <summary>Redirects to the specified action using the action name, controller name, and route values.</summary>
  985. <returns>The redirect result object.</returns>
  986. <param name="actionName">The name of the action.</param>
  987. <param name="controllerName">The name of the controller</param>
  988. <param name="routeValues">The parameters for a route. </param>
  989. </member>
  990. <member name="M:System.Web.Mvc.Controller.RedirectToAction(System.String,System.String,System.Web.Routing.RouteValueDictionary)">
  991. <summary>Redirects to the specified action using the action name, controller name, and route dictionary.</summary>
  992. <returns>The redirect result object.</returns>
  993. <param name="actionName">The name of the action.</param>
  994. <param name="controllerName">The name of the controller</param>
  995. <param name="routeValues">The parameters for a route.</param>
  996. </member>
  997. <member name="M:System.Web.Mvc.Controller.RedirectToAction(System.String,System.Web.Routing.RouteValueDictionary)">
  998. <summary>Redirects to the specified action using the action name and route dictionary.</summary>
  999. <returns>The redirect result object.</returns>
  1000. <param name="actionName">The name of the action.</param>
  1001. <param name="routeValues">The parameters for a route.</param>
  1002. </member>
  1003. <member name="M:System.Web.Mvc.Controller.RedirectToActionPermanent(System.String)"></member>
  1004. <member name="M:System.Web.Mvc.Controller.RedirectToActionPermanent(System.String,System.Object)"></member>
  1005. <member name="M:System.Web.Mvc.Controller.RedirectToActionPermanent(System.String,System.String)"></member>
  1006. <member name="M:System.Web.Mvc.Controller.RedirectToActionPermanent(System.String,System.String,System.Object)">
  1007. <summary>Returns an instance of the <see cref="T:System.Web.Mvc.RedirectResult" /> class with the <see cref="P:System.Web.Mvc.RedirectResult.Permanent" /> property set to true using the specified action name, controller name, and route values.</summary>
  1008. <returns>An instance of the <see cref="T:System.Web.Mvc.RedirectResult" /> class with the <see cref="P:System.Web.Mvc.RedirectResult.Permanent" /> property set to true.</returns>
  1009. <param name="actionName">The action name.</param>
  1010. <param name="controllerName">The controller name.</param>
  1011. <param name="routeValues">The route values.</param>
  1012. </member>
  1013. <member name="M:System.Web.Mvc.Controller.RedirectToActionPermanent(System.String,System.String,System.Web.Routing.RouteValueDictionary)"></member>
  1014. <member name="M:System.Web.Mvc.Controller.RedirectToActionPermanent(System.String,System.Web.Routing.RouteValueDictionary)"></member>
  1015. <member name="M:System.Web.Mvc.Controller.RedirectToRoute(System.Object)">
  1016. <summary>Redirects to the specified route using the specified route values.</summary>
  1017. <returns>The redirect-to-route result object.</returns>
  1018. <param name="routeValues">The parameters for a route. </param>
  1019. </member>
  1020. <member name="M:System.Web.Mvc.Controller.RedirectToRoute(System.String)">
  1021. <summary>Redirects to the specified route using the route name.</summary>
  1022. <returns>The redirect-to-route result object.</returns>
  1023. <param name="routeName">The name of the route</param>
  1024. </member>
  1025. <member name="M:System.Web.Mvc.Controller.RedirectToRoute(System.String,System.Object)">
  1026. <summary>Redirects to the specified route using the route name and route values.</summary>
  1027. <returns>The redirect-to-route result object.</returns>
  1028. <param name="routeName">The name of the route</param>
  1029. <param name="routeValues">The parameters for a route. </param>
  1030. </member>
  1031. <member name="M:System.Web.Mvc.Controller.RedirectToRoute(System.String,System.Web.Routing.RouteValueDictionary)">
  1032. <summary>Redirects to the specified route using the route name and route dictionary.</summary>
  1033. <returns>The redirect-to-route result object.</returns>
  1034. <param name="routeName">The name of the route</param>
  1035. <param name="routeValues">The parameters for a route.</param>
  1036. </member>
  1037. <member name="M:System.Web.Mvc.Controller.RedirectToRoute(System.Web.Routing.RouteValueDictionary)">
  1038. <summary>Redirects to the specified route using the route dictionary.</summary>
  1039. <returns>The redirect-to-route result object.</returns>
  1040. <param name="routeValues">The parameters for a route.</param>
  1041. </member>
  1042. <member name="M:System.Web.Mvc.Controller.RedirectToRoutePermanent(System.Object)"></member>
  1043. <member name="M:System.Web.Mvc.Controller.RedirectToRoutePermanent(System.String)"></member>
  1044. <member name="M:System.Web.Mvc.Controller.RedirectToRoutePermanent(System.String,System.Object)">
  1045. <summary>Returns an instance of the <see cref="T:System.Web.Mvc.RedirectResult" /> class with the <see cref="P:System.Web.Mvc.RedirectResult.Permanent" /> property set to true using the specified route name and route values.</summary>
  1046. <returns>An instance of the <see cref="T:System.Web.Mvc.RedirectResult" /> class with the <see cref="P:System.Web.Mvc.RedirectResult.Permanent" /> property set to true.</returns>
  1047. <param name="routeName">The route name.</param>
  1048. <param name="routeValues">The route values.</param>
  1049. </member>
  1050. <member name="M:System.Web.Mvc.Controller.RedirectToRoutePermanent(System.String,System.Web.Routing.RouteValueDictionary)"></member>
  1051. <member name="M:System.Web.Mvc.Controller.RedirectToRoutePermanent(System.Web.Routing.RouteValueDictionary)"></member>
  1052. <member name="P:System.Web.Mvc.Controller.Request">
  1053. <summary>Gets the <see cref="T:System.Web.HttpRequestBase" /> object for the current HTTP request.</summary>
  1054. <returns>The request object.</returns>
  1055. </member>
  1056. <member name="P:System.Web.Mvc.Controller.Response">
  1057. <summary>Gets the <see cref="T:System.Web.HttpResponseBase" /> object for the current HTTP response.</summary>
  1058. <returns>The response object.</returns>
  1059. </member>
  1060. <member name="P:System.Web.Mvc.Controller.RouteData">
  1061. <summary>Gets the route data for the current request.</summary>
  1062. <returns>The route data.</returns>
  1063. </member>
  1064. <member name="P:System.Web.Mvc.Controller.Server">
  1065. <summary>Gets the <see cref="T:System.Web.HttpServerUtilityBase" /> object that provides methods that are used during Web request processing.</summary>
  1066. <returns>The HTTP server object.</returns>
  1067. </member>
  1068. <member name="P:System.Web.Mvc.Controller.Session">
  1069. <summary>Gets the <see cref="T:System.Web.HttpSessionStateBase" /> object for the current HTTP request.</summary>
  1070. <returns>The HTTP session-state object for the current HTTP request.</returns>
  1071. </member>
  1072. <member name="M:System.Web.Mvc.Controller.System#Web#Mvc#IActionFilter#OnActionExecuted(System.Web.Mvc.ActionExecutedContext)">
  1073. <summary>This API supports the ASP.NET MVC infrastructure and is not intended to be used directly from your code. This method calls the <see cref="M:System.Web.Mvc.Controller.OnActionExecuted(System.Web.Mvc.ActionExecutedContext)" /> method.</summary>
  1074. <param name="filterContext">The filter context.</param>
  1075. </member>
  1076. <member name="M:System.Web.Mvc.Controller.System#Web#Mvc#IActionFilter#OnActionExecuting(System.Web.Mvc.ActionExecutingContext)">
  1077. <summary>This API supports the ASP.NET MVC infrastructure and is not intended to be used directly from your code. This method calls the <see cref="M:System.Web.Mvc.Controller.OnActionExecuting(System.Web.Mvc.ActionExecutingContext)" /> method.</summary>
  1078. <param name="filterContext">The filter context.</param>
  1079. </member>
  1080. <member name="M:System.Web.Mvc.Controller.System#Web#Mvc#IAuthorizationFilter#OnAuthorization(System.Web.Mvc.AuthorizationContext)">
  1081. <summary>This API supports the ASP.NET MVC infrastructure and is not intended to be used directly from your code. This method calls the <see cref="M:System.Web.Mvc.Controller.OnAuthorization(System.Web.Mvc.AuthorizationContext)" /> method.</summary>
  1082. <param name="filterContext">The filter context.</param>
  1083. </member>
  1084. <member name="M:System.Web.Mvc.Controller.System#Web#Mvc#IExceptionFilter#OnException(System.Web.Mvc.ExceptionContext)">
  1085. <summary>This API supports the ASP.NET MVC infrastructure and is not intended to be used directly from your code. This method calls the <see cref="M:System.Web.Mvc.Controller.OnException(System.Web.Mvc.ExceptionContext)" /> method.</summary>
  1086. <param name="filterContext">The filter context.</param>
  1087. </member>
  1088. <member name="M:System.Web.Mvc.Controller.System#Web#Mvc#IResultFilter#OnResultExecuted(System.Web.Mvc.ResultExecutedContext)">
  1089. <summary>This API supports the ASP.NET MVC infrastructure and is not intended to be used directly from your code. This method calls the <see cref="M:System.Web.Mvc.Controller.OnResultExecuted(System.Web.Mvc.ResultExecutedContext)" /> method.</summary>
  1090. <param name="filterContext">The filter context.</param>
  1091. </member>
  1092. <member name="M:System.Web.Mvc.Controller.System#Web#Mvc#IResultFilter#OnResultExecuting(System.Web.Mvc.ResultExecutingContext)">
  1093. <summary>This API supports the ASP.NET MVC infrastructure and is not intended to be used directly from your code. This method calls the <see cref="M:System.Web.Mvc.Controller.OnResultExecuting(System.Web.Mvc.ResultExecutingContext)" /> method.</summary>
  1094. <param name="filterContext">The filter context.</param>
  1095. </member>
  1096. <member name="P:System.Web.Mvc.Controller.TempDataProvider">
  1097. <summary>Gets the temporary-data provider object that is used to store data for the next request.</summary>
  1098. <returns>The temporary-data provider.</returns>
  1099. </member>
  1100. <member name="M:System.Web.Mvc.Controller.TryUpdateModel``1(``0)">
  1101. <summary>Updates the specified model instance using values from the controller's current value provider.</summary>
  1102. <returns>true if the update is successful; otherwise, false.</returns>
  1103. <param name="model">The model instance to update.</param>
  1104. <typeparam name="TModel">The type of the model object.</typeparam>
  1105. <exception cref="T:System.ArgumentNullException">The <paramref name="model" /> parameter or the <see cref="P:System.Web.Mvc.ControllerBase.ValueProvider" /> property is null.</exception>
  1106. </member>
  1107. <member name="M:System.Web.Mvc.Controller.TryUpdateModel``1(``0,System.String)">
  1108. <summary>Updates the specified model instance using values from the controller's current value provider and a prefix.</summary>
  1109. <returns>true if the update is successful; otherwise, false.</returns>
  1110. <param name="model">The model instance to update.</param>
  1111. <param name="prefix">The prefix to use when looking up values in the value provider.</param>
  1112. <typeparam name="TModel">The type of the model object.</typeparam>
  1113. <exception cref="T:System.ArgumentNullException">The <paramref name="model" /> parameter or the <see cref="P:System.Web.Mvc.ControllerBase.ValueProvider" /> property is null.</exception>
  1114. </member>
  1115. <member name="M:System.Web.Mvc.Controller.TryUpdateModel``1(``0,System.String,System.String[])">
  1116. <summary>Updates the specified model instance using values from the controller's current value provider, a prefix, and included properties.</summary>
  1117. <returns>true if the update is successful; otherwise, false.</returns>
  1118. <param name="model">The model instance to update.</param>
  1119. <param name="prefix">The prefix to use when looking up values in the value provider.</param>
  1120. <param name="includeProperties">A list of properties of the model to update.</param>
  1121. <typeparam name="TModel">The type of the model object.</typeparam>
  1122. <exception cref="T:System.ArgumentNullException">The <paramref name="model" /> parameter or the <see cref="P:System.Web.Mvc.ControllerBase.ValueProvider" /> property is null.</exception>
  1123. </member>
  1124. <member name="M:System.Web.Mvc.Controller.TryUpdateModel``1(``0,System.String,System.String[],System.String[])">
  1125. <summary>Updates the specified model instance using values from the controller's current value provider, a prefix, a list of properties to exclude, and a list of properties to include.</summary>
  1126. <returns>true if the update is successful; otherwise, false.</returns>
  1127. <param name="model">The model instance to update.</param>
  1128. <param name="prefix">The prefix to use when looking up values in the value provider</param>
  1129. <param name="includeProperties">A list of properties of the model to update.</param>
  1130. <param name="excludeProperties">A list of properties to explicitly exclude from the update. These are excluded even if they are listed in the <paramref name="includeProperties" /> parameter list.</param>
  1131. <typeparam name="TModel">The type of the model object.</typeparam>
  1132. <exception cref="T:System.ArgumentNullException">The <paramref name="model" /> parameter or the <see cref="P:System.Web.Mvc.ControllerBase.ValueProvider" /> property is null.</exception>
  1133. </member>
  1134. <member name="M:System.Web.Mvc.Controller.TryUpdateModel``1(``0,System.String,System.String[],System.String[],System.Web.Mvc.IValueProvider)">
  1135. <summary>Updates the specified model instance using values from the value provider, a prefix, a list of properties to exclude , and a list of properties to include.</summary>
  1136. <returns>true if the update is successful; otherwise, false.</returns>
  1137. <param name="model">The model instance to update.</param>
  1138. <param name="prefix">The prefix to use when looking up values in the value provider.</param>
  1139. <param name="includeProperties">A list of properties of the model to update.</param>
  1140. <param name="excludeProperties">A list of properties to explicitly exclude from the update. These are excluded even if they are listed in the <paramref name="includeProperties" /> parameter list.</param>
  1141. <param name="valueProvider">A dictionary of values that is used to update the model.</param>
  1142. <typeparam name="TModel">The type of the model object.</typeparam>
  1143. </member>
  1144. <member name="M:System.Web.Mvc.Controller.TryUpdateModel``1(``0,System.String,System.String[],System.Web.Mvc.IValueProvider)">
  1145. <summary>Updates the specified model instance using values from the value provider, a prefix, and included properties.</summary>
  1146. <returns>true if the update is successful; otherwise, false.</returns>
  1147. <param name="model">The model instance to update.</param>
  1148. <param name="prefix">The prefix to use when looking up values in the value provider.</param>
  1149. <param name="includeProperties">A list of properties of the model to update.</param>
  1150. <param name="valueProvider">A dictionary of values that is used to update the model.</param>
  1151. <typeparam name="TModel">The type of the model object.</typeparam>
  1152. </member>
  1153. <member name="M:System.Web.Mvc.Controller.TryUpdateModel``1(``0,System.String,System.Web.Mvc.IValueProvider)">
  1154. <summary>Updates the specified model instance using values from the value provider and a prefix.</summary>
  1155. <returns>true if the update is successful; otherwise, false.</returns>
  1156. <param name="model">The model instance to update.</param>
  1157. <param name="prefix">The prefix to use when looking up values in the value provider.</param>
  1158. <param name="valueProvider">A dictionary of values that is used to update the model.</param>
  1159. <typeparam name="TModel">The type of the model object.</typeparam>
  1160. </member>
  1161. <member name="M:System.Web.Mvc.Controller.TryUpdateModel``1(``0,System.String[])">
  1162. <summary>Updates the specified model instance using values from the controller's current value provider and included properties.</summary>
  1163. <returns>true if the update is successful; otherwise, false.</returns>
  1164. <param name="model">The model instance to update.</param>
  1165. <param name="includeProperties">A list of properties of the model to update.</param>
  1166. <typeparam name="TModel">The type of the model object.</typeparam>
  1167. <exception cref="T:System.ArgumentNullException">The <paramref name="model" /> parameter or the <see cref="P:System.Web.Mvc.ControllerBase.ValueProvider" /> property is null.</exception>
  1168. </member>
  1169. <member name="M:System.Web.Mvc.Controller.TryUpdateModel``1(``0,System.String[],System.Web.Mvc.IValueProvider)">
  1170. <summary>Updates the specified model instance using values from the value provider and a list of properties to include.</summary>
  1171. <returns>true if the update is successful; otherwise, false.</returns>
  1172. <param name="model">The model instance to update.</param>
  1173. <param name="includeProperties">A list of properties of the model to update.</param>
  1174. <param name="valueProvider">A dictionary of values that is used to update the model.</param>
  1175. <typeparam name="TModel">The type of the model object.</typeparam>
  1176. </member>
  1177. <member name="M:System.Web.Mvc.Controller.TryUpdateModel``1(``0,System.Web.Mvc.IValueProvider)">
  1178. <summary>Updates the specified model instance using values from the value provider.</summary>
  1179. <returns>true if the update is successful; otherwise, false.</returns>
  1180. <param name="model">The model instance to update.</param>
  1181. <param name="valueProvider">A dictionary of values that is used to update the model.</param>
  1182. <typeparam name="TModel">The type of the model object.</typeparam>
  1183. </member>
  1184. <member name="M:System.Web.Mvc.Controller.TryValidateModel(System.Object)">
  1185. <summary>Validates the specified model instance.</summary>
  1186. <returns>true if the model validation is successful; otherwise, false.</returns>
  1187. <param name="model">The model instance to validate.</param>
  1188. </member>
  1189. <member name="M:System.Web.Mvc.Controller.TryValidateModel(System.Object,System.String)">
  1190. <summary>Validates the specified model instance using an HTML prefix.</summary>
  1191. <returns>true if the model validation is successful; otherwise, false.</returns>
  1192. <param name="model">The model to validate.</param>
  1193. <param name="prefix">The prefix to use when looking up values in the model provider.</param>
  1194. </member>
  1195. <member name="M:System.Web.Mvc.Controller.UpdateModel``1(``0)">
  1196. <summary>Updates the specified model instance using values from the controller's current value provider.</summary>
  1197. <param name="model">The model instance to update.</param>
  1198. <typeparam name="TModel">The type of the model object.</typeparam>
  1199. <exception cref="T:System.InvalidOperationException">The model was not successfully updated.</exception>
  1200. </member>
  1201. <member name="M:System.Web.Mvc.Controller.UpdateModel``1(``0,System.String)">
  1202. <summary>Updates the specified model instance using values from the controller's current value provider and a prefix.</summary>
  1203. <param name="model">The model instance to update.</param>
  1204. <param name="prefix">A prefix to use when looking up values in the value provider.</param>
  1205. <typeparam name="TModel">The type of the model object.</typeparam>
  1206. </member>
  1207. <member name="M:System.Web.Mvc.Controller.UpdateModel``1(``0,System.String,System.String[])">
  1208. <summary>Updates the specified model instance using values from the controller's current value provider, a prefix, and included properties.</summary>
  1209. <param name="model">The model instance to update.</param>
  1210. <param name="prefix">A prefix to use when looking up values in the value provider.</param>
  1211. <param name="includeProperties">A list of properties of the model to update.</param>
  1212. <typeparam name="TModel">The type of the model object.</typeparam>
  1213. </member>
  1214. <member name="M:System.Web.Mvc.Controller.UpdateModel``1(``0,System.String,System.String[],System.String[])">
  1215. <summary>Updates the specified model instance using values from the controller's current value provider, a prefix, a list of properties to exclude, and a list of properties to include.</summary>
  1216. <param name="model">The model instance to update.</param>
  1217. <param name="prefix">A prefix to use when looking up values in the value provider.</param>
  1218. <param name="includeProperties">A list of properties of the model to update.</param>
  1219. <param name="excludeProperties">A list of properties to explicitly exclude from the update. These are excluded even if they are listed in the <paramref name="includeProperties" /> list.</param>
  1220. <typeparam name="TModel">The type of the model object.</typeparam>
  1221. </member>
  1222. <member name="M:System.Web.Mvc.Controller.UpdateModel``1(``0,System.String,System.String[],System.String[],System.Web.Mvc.IValueProvider)">
  1223. <summary>Updates the specified model instance using values from the value provider, a prefix, a list of properties to exclude, and a list of properties to include.</summary>
  1224. <param name="model">The model instance to update.</param>
  1225. <param name="prefix">The prefix to use when looking up values in the value provider.</param>
  1226. <param name="includeProperties">A list of properties of the model to update.</param>
  1227. <param name="excludeProperties">A list of properties to explicitly exclude from the update. These are excluded even if they are listed in the <paramref name="includeProperties" /> parameter list.</param>
  1228. <param name="valueProvider">A dictionary of values that is used to update the model.</param>
  1229. <typeparam name="TModel">The type of the model object.</typeparam>
  1230. </member>
  1231. <member name="M:System.Web.Mvc.Controller.UpdateModel``1(``0,System.String,System.String[],System.Web.Mvc.IValueProvider)">
  1232. <summary>Updates the specified model instance using values from the value provider, a prefix, and a list of properties to include.</summary>
  1233. <param name="model">The model instance to update.</param>
  1234. <param name="prefix">The prefix to use when looking up values in the value provider.</param>
  1235. <param name="includeProperties">A list of properties of the model to update.</param>
  1236. <param name="valueProvider">A dictionary of values that is used to update the model.</param>
  1237. <typeparam name="TModel">The type of the model object.</typeparam>
  1238. </member>
  1239. <member name="M:System.Web.Mvc.Controller.UpdateModel``1(``0,System.String,System.Web.Mvc.IValueProvider)">
  1240. <summary>Updates the specified model instance using values from the value provider and a prefix.</summary>
  1241. <param name="model">The model instance to update.</param>
  1242. <param name="prefix">The prefix to use when looking up values in the value provider.</param>
  1243. <param name="valueProvider">A dictionary of values that is used to update the model.</param>
  1244. <typeparam name="TModel">The type of the model object.</typeparam>
  1245. </member>
  1246. <member name="M:System.Web.Mvc.Controller.UpdateModel``1(``0,System.String[])">
  1247. <summary>Updates the specified model instance using values from the controller object's current value provider.</summary>
  1248. <param name="model">The model instance to update.</param>
  1249. <param name="includeProperties">A list of properties of the model to update.</param>
  1250. <typeparam name="TModel">The type of the model object.</typeparam>
  1251. </member>
  1252. <member name="M:System.Web.Mvc.Controller.UpdateModel``1(``0,System.String[],System.Web.Mvc.IValueProvider)">
  1253. <summary>Updates the specified model instance using values from the value provider, a prefix, and a list of properties to include.</summary>
  1254. <param name="model">The model instance to update.</param>
  1255. <param name="includeProperties">A list of properties of the model to update.</param>
  1256. <param name="valueProvider">A dictionary of values that is used to update the model.</param>
  1257. <typeparam name="TModel">The type of the model object.</typeparam>
  1258. </member>
  1259. <member name="M:System.Web.Mvc.Controller.UpdateModel``1(``0,System.Web.Mvc.IValueProvider)">
  1260. <summary>Updates the specified model instance using values from the value provider.</summary>
  1261. <param name="model">The model instance to update.</param>
  1262. <param name="valueProvider">A dictionary of values that is used to update the model.</param>
  1263. <typeparam name="TModel">The type of the model object.</typeparam>
  1264. </member>
  1265. <member name="P:System.Web.Mvc.Controller.Url">
  1266. <summary>Gets the URL helper object that is used to generate URLs by using routing.</summary>
  1267. <returns>The URL helper object.</returns>
  1268. </member>
  1269. <member name="P:System.Web.Mvc.Controller.User">
  1270. <summary>Gets the user security information for the current HTTP request.</summary>
  1271. <returns>The user security information for the current HTTP request.</returns>
  1272. </member>
  1273. <member name="M:System.Web.Mvc.Controller.ValidateModel(System.Object)">
  1274. <summary>Validates the specified model instance.</summary>
  1275. <param name="model">The model to validate.</param>
  1276. </member>
  1277. <member name="M:System.Web.Mvc.Controller.ValidateModel(System.Object,System.String)">
  1278. <summary>Validates the specified model instance using an HTML prefix.</summary>
  1279. <param name="model">The model to validate.</param>
  1280. <param name="prefix">The prefix to use when looking up values in the model provider.</param>
  1281. </member>
  1282. <member name="M:System.Web.Mvc.Controller.View">
  1283. <summary>Creates a <see cref="T:System.Web.Mvc.ViewResult" /> object that renders a view to the response.</summary>
  1284. <returns>The view result that renders a view to the response.</returns>
  1285. </member>
  1286. <member name="M:System.Web.Mvc.Controller.View(System.Object)">
  1287. <summary>Creates a <see cref="T:System.Web.Mvc.ViewResult" /> object by using the model that renders a view to the response.</summary>
  1288. <returns>The view result.</returns>
  1289. <param name="model">The model that is rendered by the view.</param>
  1290. </member>
  1291. <member name="M:System.Web.Mvc.Controller.View(System.String)">
  1292. <summary>Creates a <see cref="T:System.Web.Mvc.ViewResult" /> object by using the view name that renders a view.</summary>
  1293. <returns>The view result.</returns>
  1294. <param name="viewName">The name of the view that is rendered to the response.</param>
  1295. </member>
  1296. <member name="M:System.Web.Mvc.Controller.View(System.String,System.Object)">
  1297. <summary>Creates a <see cref="T:System.Web.Mvc.ViewResult" /> object by using the view name and model that renders a view to the response.</summary>
  1298. <returns>The view result.</returns>
  1299. <param name="viewName">The name of the view that is rendered to the response.</param>
  1300. <param name="model">The model that is rendered by the view.</param>
  1301. </member>
  1302. <member name="M:System.Web.Mvc.Controller.View(System.String,System.String)">
  1303. <summary>Creates a <see cref="T:System.Web.Mvc.ViewResult" /> object using the view name and master-page name that renders a view to the response.</summary>
  1304. <returns>The view result.</returns>
  1305. <param name="viewName">The name of the view that is rendered to the response.</param>
  1306. <param name="masterName">The name of the master page or template to use when the view is rendered.</param>
  1307. </member>
  1308. <member name="M:System.Web.Mvc.Controller.View(System.String,System.String,System.Object)">
  1309. <summary>Creates a <see cref="T:System.Web.Mvc.ViewResult" /> object using the view name, master-page name, and model that renders a view.</summary>
  1310. <returns>The view result.</returns>
  1311. <param name="viewName">The name of the view that is rendered to the response.</param>
  1312. <param name="masterName">The name of the master page or template to use when the view is rendered.</param>
  1313. <param name="model">The model that is rendered by the view.</param>
  1314. </member>
  1315. <member name="M:System.Web.Mvc.Controller.View(System.Web.Mvc.IView)">
  1316. <summary>Creates a <see cref="T:System.Web.Mvc.ViewResult" /> object that renders the specified <see cref="T:System.Web.Mvc.IView" /> object.</summary>
  1317. <returns>The view result.</returns>
  1318. <param name="view">The view that is rendered to the response.</param>
  1319. </member>
  1320. <member name="M:System.Web.Mvc.Controller.View(System.Web.Mvc.IView,System.Object)">
  1321. <summary>Creates a <see cref="T:System.Web.Mvc.ViewResult" /> object that renders the specified <see cref="T:System.Web.Mvc.IView" /> object.</summary>
  1322. <returns>The view result.</returns>
  1323. <param name="view">The view that is rendered to the response.</param>
  1324. <param name="model">The model that is rendered by the view.</param>
  1325. </member>
  1326. <member name="T:System.Web.Mvc.ControllerActionInvoker">
  1327. <summary>Represents a class that is responsible for invoking the action methods of a controller.</summary>
  1328. </member>
  1329. <member name="M:System.Web.Mvc.ControllerActionInvoker.#ctor">
  1330. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ControllerActionInvoker" /> class.</summary>
  1331. </member>
  1332. <member name="P:System.Web.Mvc.ControllerActionInvoker.Binders">
  1333. <summary>Gets or sets the model binders that are associated with the action.</summary>
  1334. <returns>The model binders that are associated with the action.</returns>
  1335. </member>
  1336. <member name="M:System.Web.Mvc.ControllerActionInvoker.CreateActionResult(System.Web.Mvc.ControllerContext,System.Web.Mvc.ActionDescriptor,System.Object)">
  1337. <summary>Creates the action result.</summary>
  1338. <returns>The action result object.</returns>
  1339. <param name="controllerContext">The controller context.</param>
  1340. <param name="actionDescriptor">The action descriptor.</param>
  1341. <param name="actionReturnValue">The action return value.</param>
  1342. </member>
  1343. <member name="M:System.Web.Mvc.ControllerActionInvoker.FindAction(System.Web.Mvc.ControllerContext,System.Web.Mvc.ControllerDescriptor,System.String)">
  1344. <summary>Finds the information about the action method.</summary>
  1345. <returns>Information about the action method.</returns>
  1346. <param name="controllerContext">The controller context.</param>
  1347. <param name="controllerDescriptor">The controller descriptor.</param>
  1348. <param name="actionName">The name of the action.</param>
  1349. </member>
  1350. <member name="M:System.Web.Mvc.ControllerActionInvoker.GetControllerDescriptor(System.Web.Mvc.ControllerContext)">
  1351. <summary>Retrieves information about the controller by using the specified controller context.</summary>
  1352. <returns>Information about the controller.</returns>
  1353. <param name="controllerContext">The controller context.</param>
  1354. </member>
  1355. <member name="M:System.Web.Mvc.ControllerActionInvoker.GetFilters(System.Web.Mvc.ControllerContext,System.Web.Mvc.ActionDescriptor)">
  1356. <summary>Retrieves information about the action filters.</summary>
  1357. <returns>Information about the action filters.</returns>
  1358. <param name="controllerContext">The controller context.</param>
  1359. <param name="actionDescriptor">The action descriptor.</param>
  1360. </member>
  1361. <member name="M:System.Web.Mvc.ControllerActionInvoker.GetParameterValue(System.Web.Mvc.ControllerContext,System.Web.Mvc.ParameterDescriptor)">
  1362. <summary>Gets the value of the specified action-method parameter.</summary>
  1363. <returns>The value of the action-method parameter.</returns>
  1364. <param name="controllerContext">The controller context.</param>
  1365. <param name="parameterDescriptor">The parameter descriptor.</param>
  1366. </member>
  1367. <member name="M:System.Web.Mvc.ControllerActionInvoker.GetParameterValues(System.Web.Mvc.ControllerContext,System.Web.Mvc.ActionDescriptor)">
  1368. <summary>Gets the values of the action-method parameters.</summary>
  1369. <returns>The values of the action-method parameters.</returns>
  1370. <param name="controllerContext">The controller context.</param>
  1371. <param name="actionDescriptor">The action descriptor.</param>
  1372. </member>
  1373. <member name="M:System.Web.Mvc.ControllerActionInvoker.InvokeAction(System.Web.Mvc.ControllerContext,System.String)">
  1374. <summary>Invokes the specified action by using the specified controller context.</summary>
  1375. <returns>The result of executing the action.</returns>
  1376. <param name="controllerContext">The controller context.</param>
  1377. <param name="actionName">The name of the action to invoke.</param>
  1378. <exception cref="T:System.ArgumentNullException">The <paramref name="controllerContext" /> parameter is null.</exception>
  1379. <exception cref="T:System.ArgumentException">The <paramref name="actionName" /> parameter is null or empty.</exception>
  1380. <exception cref="T:System.Threading.ThreadAbortException">The thread was aborted during invocation of the action.</exception>
  1381. <exception cref="T:System.Exception">An unspecified error occurred during invocation of the action.</exception>
  1382. </member>
  1383. <member name="M:System.Web.Mvc.ControllerActionInvoker.InvokeActionMethod(System.Web.Mvc.ControllerContext,System.Web.Mvc.ActionDescriptor,System.Collections.Generic.IDictionary{System.String,System.Object})">
  1384. <summary>Invokes the specified action method by using the specified parameters and the controller context.</summary>
  1385. <returns>The result of executing the action method.</returns>
  1386. <param name="controllerContext">The controller context.</param>
  1387. <param name="actionDescriptor">The action descriptor.</param>
  1388. <param name="parameters">The parameters.</param>
  1389. </member>
  1390. <member name="M:System.Web.Mvc.ControllerActionInvoker.InvokeActionMethodWithFilters(System.Web.Mvc.ControllerContext,System.Collections.Generic.IList{System.Web.Mvc.IActionFilter},System.Web.Mvc.ActionDescriptor,System.Collections.Generic.IDictionary{System.String,System.Object})">
  1391. <summary>Invokes the specified action method by using the specified parameters, controller context, and action filters.</summary>
  1392. <returns>The context for the ActionExecuted method of the <see cref="T:System.Web.Mvc.ActionFilterAttribute" /> class.</returns>
  1393. <param name="controllerContext">The controller context.</param>
  1394. <param name="filters">The action filters.</param>
  1395. <param name="actionDescriptor">The action descriptor.</param>
  1396. <param name="parameters">The parameters.</param>
  1397. </member>
  1398. <member name="M:System.Web.Mvc.ControllerActionInvoker.InvokeActionResult(System.Web.Mvc.ControllerContext,System.Web.Mvc.ActionResult)">
  1399. <summary>Invokes the specified action result by using the specified controller context.</summary>
  1400. <param name="controllerContext">The controller context.</param>
  1401. <param name="actionResult">The action result.</param>
  1402. </member>
  1403. <member name="M:System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters(System.Web.Mvc.ControllerContext,System.Collections.Generic.IList{System.Web.Mvc.IResultFilter},System.Web.Mvc.ActionResult)">
  1404. <summary>Invokes the specified action result by using the specified action filters and the controller context.</summary>
  1405. <returns>The context for the ResultExecuted method of the <see cref="T:System.Web.Mvc.ActionFilterAttribute" /> class.</returns>
  1406. <param name="controllerContext">The controller context.</param>
  1407. <param name="filters">The action filters.</param>
  1408. <param name="actionResult">The action result.</param>
  1409. </member>
  1410. <member name="M:System.Web.Mvc.ControllerActionInvoker.InvokeAuthorizationFilters(System.Web.Mvc.ControllerContext,System.Collections.Generic.IList{System.Web.Mvc.IAuthorizationFilter},System.Web.Mvc.ActionDescriptor)">
  1411. <summary>Invokes the specified authorization filters by using the specified action descriptor and controller context.</summary>
  1412. <returns>The context for the <see cref="T:System.Web.Mvc.AuthorizeAttribute" /> object.</returns>
  1413. <param name="controllerContext">The controller context.</param>
  1414. <param name="filters">The authorization filters.</param>
  1415. <param name="actionDescriptor">The action descriptor.</param>
  1416. </member>
  1417. <member name="M:System.Web.Mvc.ControllerActionInvoker.InvokeExceptionFilters(System.Web.Mvc.ControllerContext,System.Collections.Generic.IList{System.Web.Mvc.IExceptionFilter},System.Exception)">
  1418. <summary>Invokes the specified exception filters by using the specified exception and controller context.</summary>
  1419. <returns>The context for the <see cref="T:System.Web.Mvc.HandleErrorAttribute" /> object.</returns>
  1420. <param name="controllerContext">The controller context.</param>
  1421. <param name="filters">The exception filters.</param>
  1422. <param name="exception">The exception.</param>
  1423. </member>
  1424. <member name="T:System.Web.Mvc.ControllerBase">
  1425. <summary>Represents the base class for all MVC controllers.</summary>
  1426. </member>
  1427. <member name="M:System.Web.Mvc.ControllerBase.#ctor">
  1428. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ControllerBase" /> class.</summary>
  1429. </member>
  1430. <member name="P:System.Web.Mvc.ControllerBase.ControllerContext">
  1431. <summary>Gets or sets the controller context.</summary>
  1432. <returns>The controller context.</returns>
  1433. </member>
  1434. <member name="M:System.Web.Mvc.ControllerBase.Execute(System.Web.Routing.RequestContext)">
  1435. <summary>Executes the specified request context.</summary>
  1436. <param name="requestContext">The request context.</param>
  1437. <exception cref="T:System.ArgumentNullException">The <paramref name="requestContext" /> parameter is null.</exception>
  1438. </member>
  1439. <member name="M:System.Web.Mvc.ControllerBase.ExecuteCore">
  1440. <summary>Executes the request.</summary>
  1441. </member>
  1442. <member name="M:System.Web.Mvc.ControllerBase.Initialize(System.Web.Routing.RequestContext)">
  1443. <summary>Initializes the specified request context.</summary>
  1444. <param name="requestContext">The request context.</param>
  1445. </member>
  1446. <member name="M:System.Web.Mvc.ControllerBase.System#Web#Mvc#IController#Execute(System.Web.Routing.RequestContext)">
  1447. <summary>Executes the specified request context.</summary>
  1448. <param name="requestContext">The request context.</param>
  1449. </member>
  1450. <member name="P:System.Web.Mvc.ControllerBase.TempData">
  1451. <summary>Gets or sets the dictionary for temporary data.</summary>
  1452. <returns>The dictionary for temporary data.</returns>
  1453. </member>
  1454. <member name="P:System.Web.Mvc.ControllerBase.ValidateRequest">
  1455. <summary>Gets or sets a value that indicates whether request validation is enabled for this request.</summary>
  1456. <returns>true if request validation is enabled for this request; otherwise, false. The default is true.</returns>
  1457. </member>
  1458. <member name="P:System.Web.Mvc.ControllerBase.ValueProvider">
  1459. <summary>Gets or sets the value provider for the controller.</summary>
  1460. <returns>The value provider for the controller.</returns>
  1461. </member>
  1462. <member name="P:System.Web.Mvc.ControllerBase.ViewData">
  1463. <summary>Gets or sets the dictionary for view data.</summary>
  1464. <returns>The dictionary for the view data.</returns>
  1465. </member>
  1466. <member name="P:System.Web.Mvc.ControllerBase.ViewModel">
  1467. <summary>Gets the dynamic view data dictionary.</summary>
  1468. <returns>The dynamic view data dictionary.</returns>
  1469. </member>
  1470. <member name="T:System.Web.Mvc.ControllerBuilder">
  1471. <summary>Represents a class that is responsible for dynamically building a controller.</summary>
  1472. </member>
  1473. <member name="M:System.Web.Mvc.ControllerBuilder.#ctor">
  1474. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ControllerBuilder" /> class.</summary>
  1475. </member>
  1476. <member name="P:System.Web.Mvc.ControllerBuilder.Current">
  1477. <summary>Gets the current controller builder object.</summary>
  1478. <returns>The current controller builder.</returns>
  1479. </member>
  1480. <member name="P:System.Web.Mvc.ControllerBuilder.DefaultNamespaces">
  1481. <summary>Gets the default namespaces.</summary>
  1482. <returns>The default namespaces.</returns>
  1483. </member>
  1484. <member name="M:System.Web.Mvc.ControllerBuilder.GetControllerFactory">
  1485. <summary>Gets the associated controller factory.</summary>
  1486. <returns>The controller factory.</returns>
  1487. </member>
  1488. <member name="M:System.Web.Mvc.ControllerBuilder.SetControllerFactory(System.Type)">
  1489. <summary>Sets the controller factory by using the specified type.</summary>
  1490. <param name="controllerFactoryType">The type of the controller factory.</param>
  1491. <exception cref="T:System.ArgumentNullException">The <paramref name="controllerFactoryType" /> parameter is null.</exception>
  1492. <exception cref="T:System.ArgumentException">The controller factory cannot be assigned from the type in the <paramref name="controllerFactoryType" /> parameter.</exception>
  1493. <exception cref="T:System.InvalidOperationException">An error occurred while the controller factory was being set.</exception>
  1494. </member>
  1495. <member name="M:System.Web.Mvc.ControllerBuilder.SetControllerFactory(System.Web.Mvc.IControllerFactory)">
  1496. <summary>Sets the specified controller factory.</summary>
  1497. <param name="controllerFactory">The controller factory.</param>
  1498. <exception cref="T:System.ArgumentNullException">The <paramref name="controllerFactory" /> parameter is null.</exception>
  1499. </member>
  1500. <member name="T:System.Web.Mvc.ControllerContext">
  1501. <summary>Encapsulates information about an HTTP request that matches specified <see cref="T:System.Web.Routing.RouteBase" /> and <see cref="T:System.Web.Mvc.ControllerBase" /> instances.</summary>
  1502. </member>
  1503. <member name="M:System.Web.Mvc.ControllerContext.#ctor">
  1504. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ControllerContext" /> class.</summary>
  1505. </member>
  1506. <member name="M:System.Web.Mvc.ControllerContext.#ctor(System.Web.HttpContextBase,System.Web.Routing.RouteData,System.Web.Mvc.ControllerBase)">
  1507. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ControllerContext" /> class by using the specified HTTP context, URL route data, and controller.</summary>
  1508. <param name="httpContext">The HTTP context.</param>
  1509. <param name="routeData">The route data.</param>
  1510. <param name="controller">The controller.</param>
  1511. </member>
  1512. <member name="M:System.Web.Mvc.ControllerContext.#ctor(System.Web.Mvc.ControllerContext)">
  1513. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ControllerContext" /> class by using the specified controller context.</summary>
  1514. <param name="controllerContext">The controller context.</param>
  1515. <exception cref="T:System.ArgumentNullException">The <paramref name="controllerContext" /> parameter is null.</exception>
  1516. </member>
  1517. <member name="M:System.Web.Mvc.ControllerContext.#ctor(System.Web.Routing.RequestContext,System.Web.Mvc.ControllerBase)">
  1518. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ControllerContext" /> class by using the specified request context and controller.</summary>
  1519. <param name="requestContext">The request context.</param>
  1520. <param name="controller">The controller.</param>
  1521. <exception cref="T:System.ArgumentNullException">One or both parameters are null.</exception>
  1522. </member>
  1523. <member name="P:System.Web.Mvc.ControllerContext.Controller">
  1524. <summary>Gets or sets the controller.</summary>
  1525. <returns>The controller.</returns>
  1526. </member>
  1527. <member name="P:System.Web.Mvc.ControllerContext.HttpContext">
  1528. <summary>Gets or sets the HTTP context.</summary>
  1529. <returns>The HTTP context.</returns>
  1530. </member>
  1531. <member name="P:System.Web.Mvc.ControllerContext.IsChildAction">
  1532. <summary>Gets a value that indicates whether the associated action method is a child action.</summary>
  1533. <returns>true if the associated action method is a child action; otherwise, false.</returns>
  1534. </member>
  1535. <member name="P:System.Web.Mvc.ControllerContext.ParentActionViewContext">
  1536. <summary>Gets an object that contains the view context information for the parent action method.</summary>
  1537. <returns>An object that contains the view context information for the parent action method.</returns>
  1538. </member>
  1539. <member name="P:System.Web.Mvc.ControllerContext.RequestContext">
  1540. <summary>Gets or sets the request context.</summary>
  1541. <returns>The request context.</returns>
  1542. </member>
  1543. <member name="P:System.Web.Mvc.ControllerContext.RouteData">
  1544. <summary>Gets or sets the URL route data.</summary>
  1545. <returns>The URL route data.</returns>
  1546. </member>
  1547. <member name="T:System.Web.Mvc.ControllerDescriptor">
  1548. <summary>Encapsulates information that describes a controller, such as its name, type, and actions.</summary>
  1549. </member>
  1550. <member name="M:System.Web.Mvc.ControllerDescriptor.#ctor">
  1551. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ControllerDescriptor" /> class.</summary>
  1552. </member>
  1553. <member name="P:System.Web.Mvc.ControllerDescriptor.ControllerName">
  1554. <summary>Gets the name of the controller.</summary>
  1555. <returns>The name of the controller.</returns>
  1556. </member>
  1557. <member name="P:System.Web.Mvc.ControllerDescriptor.ControllerType">
  1558. <summary>Gets the type of the controller.</summary>
  1559. <returns>The type of the controller.</returns>
  1560. </member>
  1561. <member name="M:System.Web.Mvc.ControllerDescriptor.FindAction(System.Web.Mvc.ControllerContext,System.String)">
  1562. <summary>Finds an action method by using the specified name and controller context.</summary>
  1563. <returns>The information about the action method.</returns>
  1564. <param name="controllerContext">The controller context.</param>
  1565. <param name="actionName">The name of the action.</param>
  1566. </member>
  1567. <member name="M:System.Web.Mvc.ControllerDescriptor.GetCanonicalActions">
  1568. <summary>Retrieves a list of action-method descriptors in the controller.</summary>
  1569. <returns>A list of action-method descriptors in the controller.</returns>
  1570. </member>
  1571. <member name="M:System.Web.Mvc.ControllerDescriptor.GetCustomAttributes(System.Boolean)">
  1572. <summary>Retrieves custom attributes that are defined for this member, excluding named attributes.</summary>
  1573. <returns>An array of custom attributes, or an empty array if no custom attributes exist.</returns>
  1574. <param name="inherit">true to look up the hierarchy chain for the inherited custom attribute; otherwise, false.</param>
  1575. <exception cref="T:System.TypeLoadException">The custom attribute type cannot be loaded.</exception>
  1576. <exception cref="T:System.Reflection.AmbiguousMatchException">There is more than one attribute of type <paramref name="attributeType" /> defined for this member.</exception>
  1577. </member>
  1578. <member name="M:System.Web.Mvc.ControllerDescriptor.GetCustomAttributes(System.Type,System.Boolean)">
  1579. <summary>Retrieves custom attributes of a specified type that are defined for this member, excluding named attributes.</summary>
  1580. <returns>An array of custom attributes, or an empty array if no custom attributes exist.</returns>
  1581. <param name="attributeType">The type of the custom attributes.</param>
  1582. <param name="inherit">true to look up the hierarchy chain for the inherited custom attribute; otherwise, false.</param>
  1583. <exception cref="T:System.TypeLoadException">The custom attribute type cannot be loaded.</exception>
  1584. <exception cref="T:System.Reflection.AmbiguousMatchException">There is more than one attribute of type <paramref name="attributeType" /> defined for this member.</exception>
  1585. <exception cref="T:System.ArgumentNullException">The <paramref name="attributeType" /> parameter is null (Nothing in Visual Basic).</exception>
  1586. </member>
  1587. <member name="M:System.Web.Mvc.ControllerDescriptor.IsDefined(System.Type,System.Boolean)">
  1588. <summary>Retrieves a value that indicates whether one or more instance of the specified custom attribute are defined for this member.</summary>
  1589. <returns>true if the <paramref name="attributeType" /> is defined for this member; otherwise, false.</returns>
  1590. <param name="attributeType">The type of the custom attribute.</param>
  1591. <param name="inherit">true to look up the hierarchy chain for the inherited custom attribute; otherwise, false.</param>
  1592. <exception cref="T:System.ArgumentNullException">The <paramref name="attributeType" /> parameter is null (Nothing in Visual Basic).</exception>
  1593. </member>
  1594. <member name="P:System.Web.Mvc.ControllerDescriptor.UniqueId">
  1595. <summary>When implemented in a derived class, gets the unique ID for the controller descriptor using lazy initialization.</summary>
  1596. <returns>The unique ID.</returns>
  1597. </member>
  1598. <member name="T:System.Web.Mvc.ControllerInstanceFilterProvider">
  1599. <summary>Adds the controller to the <see cref="T:System.Web.Mvc.FilterProviderCollection" /> instance.</summary>
  1600. </member>
  1601. <member name="M:System.Web.Mvc.ControllerInstanceFilterProvider.#ctor">
  1602. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ControllerInstanceFilterProvider" /> class.</summary>
  1603. </member>
  1604. <member name="M:System.Web.Mvc.ControllerInstanceFilterProvider.GetFilters(System.Web.Mvc.ControllerContext,System.Web.Mvc.ActionDescriptor)">
  1605. <summary>Returns the collection of controller instance filters.</summary>
  1606. <returns>The collection of controller instance filters.</returns>
  1607. <param name="controllerContext">The controller context.</param>
  1608. <param name="actionDescriptor">The action descriptor.</param>
  1609. </member>
  1610. <member name="T:System.Web.Mvc.ControllerSessionStateAttribute">
  1611. <summary>Specifies the session state of the controller.</summary>
  1612. </member>
  1613. <member name="M:System.Web.Mvc.ControllerSessionStateAttribute.#ctor(System.Web.SessionState.SessionStateBehavior)">
  1614. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ControllerSessionStateAttribute" /> class.</summary>
  1615. <param name="behavior">The type of the session state.</param>
  1616. </member>
  1617. <member name="P:System.Web.Mvc.ControllerSessionStateAttribute.Behavior">
  1618. <summary>Gets the session state behavior for the controller.</summary>
  1619. <returns>The session state behavior for the controller.</returns>
  1620. </member>
  1621. <member name="T:System.Web.Mvc.CustomModelBinderAttribute">
  1622. <summary>Represents an attribute that invokes a custom model binder.</summary>
  1623. </member>
  1624. <member name="M:System.Web.Mvc.CustomModelBinderAttribute.#ctor">
  1625. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.CustomModelBinderAttribute" /> class.</summary>
  1626. </member>
  1627. <member name="M:System.Web.Mvc.CustomModelBinderAttribute.GetBinder">
  1628. <summary>Retrieves the associated model binder.</summary>
  1629. <returns>A reference to an object that implements the <see cref="T:System.Web.Mvc.IModelBinder" /> interface.</returns>
  1630. </member>
  1631. <member name="T:System.Web.Mvc.DataAnnotationsModelMetadata">
  1632. <summary>Provides a container for common metadata, for the <see cref="T:System.Web.Mvc.DataAnnotationsModelMetadataProvider" /> class, and for the <see cref="T:System.Web.Mvc.DataAnnotationsModelValidator" /> class for a data model.</summary>
  1633. </member>
  1634. <member name="M:System.Web.Mvc.DataAnnotationsModelMetadata.#ctor(System.Web.Mvc.DataAnnotationsModelMetadataProvider,System.Type,System.Func`1,System.Void,System.Object,System.Type)"></member>
  1635. <member name="M:System.Web.Mvc.DataAnnotationsModelMetadata.GetSimpleDisplayText">
  1636. <summary>Returns simple text for the model data.</summary>
  1637. <returns>Simple text for the model data.</returns>
  1638. </member>
  1639. <member name="T:System.Web.Mvc.DataAnnotationsModelMetadataProvider">
  1640. <summary>Implements the default model metadata provider for ASP.NET MVC.</summary>
  1641. </member>
  1642. <member name="M:System.Web.Mvc.DataAnnotationsModelMetadataProvider.#ctor">
  1643. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.DataAnnotationsModelMetadataProvider" /> class.</summary>
  1644. </member>
  1645. <member name="M:System.Web.Mvc.DataAnnotationsModelMetadataProvider.CreateMetadata(System.Collections.Generic.IEnumerable{System.Attribute},System.Type,System.Func`1,System.Void,System.Object)"></member>
  1646. <member name="T:System.Web.Mvc.DataAnnotationsModelValidationFactory">
  1647. <summary>Represents the method that creates a <see cref="T:System.Web.Mvc.DataAnnotationsModelValidatorProvider" /> instance.</summary>
  1648. </member>
  1649. <member name="T:System.Web.Mvc.DataAnnotationsModelValidator">
  1650. <summary>Provides a model validator.</summary>
  1651. </member>
  1652. <member name="M:System.Web.Mvc.DataAnnotationsModelValidator.#ctor(System.Web.Mvc.ModelMetadata,System.Web.Mvc.ControllerContext,System.ComponentModel.DataAnnotations.ValidationAttribute)">
  1653. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.DataAnnotationsModelValidator" /> class.</summary>
  1654. <param name="metadata">The metadata for the model.</param>
  1655. <param name="context">The controller context for the model.</param>
  1656. <param name="attribute">The validation attribute for the model.</param>
  1657. </member>
  1658. <member name="P:System.Web.Mvc.DataAnnotationsModelValidator.Attribute">
  1659. <summary>Gets the validation attribute for the model validator.</summary>
  1660. <returns>The validation attribute for the model validator.</returns>
  1661. </member>
  1662. <member name="P:System.Web.Mvc.DataAnnotationsModelValidator.ErrorMessage">
  1663. <summary>Gets the error message for the validation failure.</summary>
  1664. <returns>The error message for the validation failure.</returns>
  1665. </member>
  1666. <member name="M:System.Web.Mvc.DataAnnotationsModelValidator.GetClientValidationRules">
  1667. <summary>Retrieves a collection of client validation rules.</summary>
  1668. <returns>A collection of client validation rules.</returns>
  1669. </member>
  1670. <member name="P:System.Web.Mvc.DataAnnotationsModelValidator.IsRequired">
  1671. <summary>Gets a value that indicates whether model validation is required.</summary>
  1672. <returns>true if model validation is required; otherwise, false.</returns>
  1673. </member>
  1674. <member name="M:System.Web.Mvc.DataAnnotationsModelValidator.Validate(System.Object)">
  1675. <summary>Returns a list of validation error messages for the model.</summary>
  1676. <returns>A list of validation error messages for the model, or an empty list if no errors have occurred.</returns>
  1677. <param name="container">The container for the model.</param>
  1678. </member>
  1679. <member name="T:System.Web.Mvc.DataAnnotationsModelValidator`1">
  1680. <summary>Provides a model validator for a specified validation type.</summary>
  1681. <typeparam name="TAttribute"></typeparam>
  1682. </member>
  1683. <member name="M:System.Web.Mvc.DataAnnotationsModelValidator`1.#ctor(System.Web.Mvc.ModelMetadata,System.Web.Mvc.ControllerContext,`0)">
  1684. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.DataAnnotationsModelValidator" /> class.</summary>
  1685. <param name="metadata">The metadata for the model.</param>
  1686. <param name="context">The controller context for the model.</param>
  1687. <param name="attribute">The validation attribute for the model.</param>
  1688. </member>
  1689. <member name="P:System.Web.Mvc.DataAnnotationsModelValidator`1.Attribute">
  1690. <summary>Gets the validation attribute from the model validator.</summary>
  1691. <returns>The validation attribute from the model validator.</returns>
  1692. </member>
  1693. <member name="T:System.Web.Mvc.DataAnnotationsModelValidatorProvider">
  1694. <summary>Implements the default validation provider for ASP.NET MVC.</summary>
  1695. </member>
  1696. <member name="M:System.Web.Mvc.DataAnnotationsModelValidatorProvider.#ctor">
  1697. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.DataAnnotationsModelValidatorProvider" /> class.</summary>
  1698. </member>
  1699. <member name="P:System.Web.Mvc.DataAnnotationsModelValidatorProvider.AddImplicitRequiredAttributeForValueTypes">
  1700. <summary>Gets or sets a value that indicates whether non-nullable value types are required.</summary>
  1701. <returns>true if non-nullable value types are required; otherwise, false.</returns>
  1702. </member>
  1703. <member name="M:System.Web.Mvc.DataAnnotationsModelValidatorProvider.GetValidators(System.Web.Mvc.ModelMetadata,System.Web.Mvc.ControllerContext,System.Collections.Generic.IEnumerable{System.Attribute})">
  1704. <summary>Gets a list of validators.</summary>
  1705. <returns>A list of validators.</returns>
  1706. <param name="metadata">The metadata.</param>
  1707. <param name="context">The context.</param>
  1708. <param name="attributes">The list of validation attributes.</param>
  1709. </member>
  1710. <member name="M:System.Web.Mvc.DataAnnotationsModelValidatorProvider.RegisterAdapter(System.Type,System.Type)">
  1711. <summary>Registers an adapter to provide client-side validation.</summary>
  1712. <param name="attributeType">The type of the validation attribute.</param>
  1713. <param name="adapterType">The type of the adapter.</param>
  1714. </member>
  1715. <member name="M:System.Web.Mvc.DataAnnotationsModelValidatorProvider.RegisterAdapterFactory(System.Type,System.Web.Mvc.DataAnnotationsModelValidationFactory)">
  1716. <summary>Registers an adapter factory for the validation provider.</summary>
  1717. <param name="attributeType">The type of the attribute.</param>
  1718. <param name="factory">The factory that will be used to create the <see cref="T:System.Web.Mvc.ModelValidator" /> object for the specified attribute.</param>
  1719. </member>
  1720. <member name="M:System.Web.Mvc.DataAnnotationsModelValidatorProvider.RegisterDefaultAdapter(System.Type)">
  1721. <summary>Registers the default adapter.</summary>
  1722. <param name="adapterType">The type of the adapter.</param>
  1723. </member>
  1724. <member name="M:System.Web.Mvc.DataAnnotationsModelValidatorProvider.RegisterDefaultAdapterFactory(System.Web.Mvc.DataAnnotationsModelValidationFactory)">
  1725. <summary>Registers the default adapter factory.</summary>
  1726. <param name="factory">The factory that will be used to create the <see cref="T:System.Web.Mvc.ModelValidator" /> object for the default adapter.</param>
  1727. </member>
  1728. <member name="M:System.Web.Mvc.DataAnnotationsModelValidatorProvider.RegisterDefaultValidatableObjectAdapter(System.Type)">
  1729. <summary>Registers an adapter to provide default object validation.</summary>
  1730. <param name="adapterType">The type of the adapter.</param>
  1731. </member>
  1732. <member name="M:System.Web.Mvc.DataAnnotationsModelValidatorProvider.RegisterDefaultValidatableObjectAdapterFactory(System.Web.Mvc.DataAnnotationsValidatableObjectAdapterFactory)">
  1733. <summary>Registers an adapter factory for the default object validation provider.</summary>
  1734. <param name="factory">The factory.</param>
  1735. </member>
  1736. <member name="M:System.Web.Mvc.DataAnnotationsModelValidatorProvider.RegisterValidatableObjectAdapter(System.Type,System.Type)">
  1737. <summary>Registers an adapter to provide object validation.</summary>
  1738. <param name="modelType">The type of the model.</param>
  1739. <param name="adapterType">The type of the adapter.</param>
  1740. </member>
  1741. <member name="M:System.Web.Mvc.DataAnnotationsModelValidatorProvider.RegisterValidatableObjectAdapterFactory(System.Type,System.Web.Mvc.DataAnnotationsValidatableObjectAdapterFactory)">
  1742. <summary>Registers an adapter factory for the object validation provider.</summary>
  1743. <param name="modelType">The type of the model.</param>
  1744. <param name="factory">The factory.</param>
  1745. </member>
  1746. <member name="T:System.Web.Mvc.DataAnnotationsValidatableObjectAdapterFactory">
  1747. <summary>Provides a factory for validators that are based on <see cref="T:System.ComponentModel.DataAnnotations.IValidatableObject" />.</summary>
  1748. </member>
  1749. <member name="T:System.Web.Mvc.DataErrorInfoModelValidatorProvider">
  1750. <summary>Provides a container for the error-information model validator.</summary>
  1751. </member>
  1752. <member name="M:System.Web.Mvc.DataErrorInfoModelValidatorProvider.#ctor">
  1753. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.DataErrorInfoModelValidatorProvider" /> class.</summary>
  1754. </member>
  1755. <member name="M:System.Web.Mvc.DataErrorInfoModelValidatorProvider.GetValidators(System.Web.Mvc.ModelMetadata,System.Web.Mvc.ControllerContext)">
  1756. <summary>Gets a list of error-information model validators.</summary>
  1757. <returns>A list of error-information model validators.</returns>
  1758. <param name="metadata">The model metadata.</param>
  1759. <param name="context">The controller context.</param>
  1760. </member>
  1761. <member name="T:System.Web.Mvc.DefaultControllerFactory">
  1762. <summary>Represents the controller factory that is registered by default.</summary>
  1763. </member>
  1764. <member name="M:System.Web.Mvc.DefaultControllerFactory.#ctor">
  1765. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.DefaultControllerFactory" /> class.</summary>
  1766. </member>
  1767. <member name="M:System.Web.Mvc.DefaultControllerFactory.#ctor(System.Web.Mvc.IControllerActivator)">
  1768. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.DefaultControllerFactory" /> class using a controller activator.</summary>
  1769. <param name="controllerActivator">An object that implements the controller activator interface.</param>
  1770. </member>
  1771. <member name="M:System.Web.Mvc.DefaultControllerFactory.CreateController(System.Web.Routing.RequestContext,System.String)">
  1772. <summary>Creates the specified controller by using the specified request context.</summary>
  1773. <returns>The controller.</returns>
  1774. <param name="requestContext">The context of the HTTP request, which includes the HTTP context and route data.</param>
  1775. <param name="controllerName">The name of the controller.</param>
  1776. <exception cref="T:System.ArgumentNullException">The <paramref name="requestContext" /> parameter is null.</exception>
  1777. <exception cref="T:System.ArgumentException">The <paramref name="controllerName" /> parameter is null or empty.</exception>
  1778. </member>
  1779. <member name="M:System.Web.Mvc.DefaultControllerFactory.GetControllerInstance(System.Web.Routing.RequestContext,System.Type)">
  1780. <summary>Retrieves the controller instance for the specified request context and controller type.</summary>
  1781. <returns>The controller instance.</returns>
  1782. <param name="requestContext">The context of the HTTP request, which includes the HTTP context and route data.</param>
  1783. <param name="controllerType">The type of the controller.</param>
  1784. <exception cref="T:System.Web.HttpException">
  1785. <paramref name="controllerType" /> is null.</exception>
  1786. <exception cref="T:System.ArgumentException">
  1787. <paramref name="controllerType" /> cannot be assigned.</exception>
  1788. <exception cref="T:System.InvalidOperationException">An instance of <paramref name="controllerType" /> cannot be created.</exception>
  1789. </member>
  1790. <member name="M:System.Web.Mvc.DefaultControllerFactory.GetControllerSessionBehavior(System.Web.Routing.RequestContext,System.Type)">
  1791. <summary>Returns the controller's session behavior.</summary>
  1792. <returns>The controller's session behavior.</returns>
  1793. <param name="requestContext">The request context.</param>
  1794. <param name="controllerType">The type of the controller.</param>
  1795. </member>
  1796. <member name="M:System.Web.Mvc.DefaultControllerFactory.GetControllerType(System.Web.Routing.RequestContext,System.String)">
  1797. <summary>Retrieves the controller type for the specified name and request context.</summary>
  1798. <returns>The controller type.</returns>
  1799. <param name="requestContext">The context of the HTTP request, which includes the HTTP context and route data.</param>
  1800. <param name="controllerName">The name of the controller.</param>
  1801. </member>
  1802. <member name="M:System.Web.Mvc.DefaultControllerFactory.ReleaseController(System.Web.Mvc.IController)">
  1803. <summary>Releases the specified controller.</summary>
  1804. <param name="controller">The controller to release.</param>
  1805. </member>
  1806. <member name="M:System.Web.Mvc.DefaultControllerFactory.System#Web#Mvc#IControllerFactory#GetControllerSessionBehavior(System.Web.Routing.RequestContext,System.String)">
  1807. <summary>This API supports the ASP.NET MVC infrastructure and is not intended to be used directly from your code. This method calls the <see cref="M:System.Web.Mvc.DefaultControllerFactory.GetControllerSessionBehavior(System.Web.Routing.RequestContext,System.Type)" /> method.</summary>
  1808. <returns>The controller's session behavior.</returns>
  1809. <param name="requestContext">The request context.</param>
  1810. <param name="controllerName">The controller name.</param>
  1811. </member>
  1812. <member name="T:System.Web.Mvc.DefaultModelBinder">
  1813. <summary>Maps a browser request to a data object. This class provides a concrete implementation of a model binder.</summary>
  1814. </member>
  1815. <member name="M:System.Web.Mvc.DefaultModelBinder.#ctor">
  1816. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.DefaultModelBinder" /> class.</summary>
  1817. </member>
  1818. <member name="P:System.Web.Mvc.DefaultModelBinder.Binders">
  1819. <summary>Gets or sets the model binders for the application.</summary>
  1820. <returns>The model binders for the application.</returns>
  1821. </member>
  1822. <member name="M:System.Web.Mvc.DefaultModelBinder.BindModel(System.Web.Mvc.ControllerContext,System.Web.Mvc.ModelBindingContext)">
  1823. <summary>Binds the model by using the specified controller context and binding context.</summary>
  1824. <returns>The bound object.</returns>
  1825. <param name="controllerContext">The context within which the controller operates. The context information includes the controller, HTTP content, request context, and route data.</param>
  1826. <param name="bindingContext">The context within which the model is bound. The context includes information such as the model object, model name, model type, property filter, and value provider.</param>
  1827. <exception cref="T:System.ArgumentNullException">The <paramref name="bindingContext " />parameter is null.</exception>
  1828. </member>
  1829. <member name="M:System.Web.Mvc.DefaultModelBinder.BindProperty(System.Web.Mvc.ControllerContext,System.Web.Mvc.ModelBindingContext,System.ComponentModel.PropertyDescriptor)">
  1830. <summary>Binds the specified property by using the specified controller context and binding context and the specified property descriptor.</summary>
  1831. <param name="controllerContext">The context within which the controller operates. The context information includes the controller, HTTP content, request context, and route data.</param>
  1832. <param name="bindingContext">The context within which the model is bound. The context includes information such as the model object, model name, model type, property filter, and value provider.</param>
  1833. <param name="propertyDescriptor">Describes a property to be bound. The descriptor provides information such as the component type, property type, and property value. It also provides methods to get or set the property value.</param>
  1834. </member>
  1835. <member name="M:System.Web.Mvc.DefaultModelBinder.CreateModel(System.Web.Mvc.ControllerContext,System.Web.Mvc.ModelBindingContext,System.Type)">
  1836. <summary>Creates the specified model type by using the specified controller context and binding context.</summary>
  1837. <returns>A data object of the specified type.</returns>
  1838. <param name="controllerContext">The context within which the controller operates. The context information includes the controller, HTTP content, request context, and route data.</param>
  1839. <param name="bindingContext">The context within which the model is bound. The context includes information such as the model object, model name, model type, property filter, and value provider.</param>
  1840. <param name="modelType">The type of the model object to return.</param>
  1841. </member>
  1842. <member name="M:System.Web.Mvc.DefaultModelBinder.CreateSubIndexName(System.String,System.Int32)">
  1843. <summary>Creates an index (a subindex) based on a category of components that make up a larger index, where the specified index value is an integer.</summary>
  1844. <returns>The name of the subindex.</returns>
  1845. <param name="prefix">The prefix for the subindex.</param>
  1846. <param name="index">The index value.</param>
  1847. </member>
  1848. <member name="M:System.Web.Mvc.DefaultModelBinder.CreateSubIndexName(System.String,System.String)">
  1849. <summary>Creates an index (a subindex) based on a category of components that make up a larger index, where the specified index value is a string.</summary>
  1850. <returns>The name of the subindex.</returns>
  1851. <param name="prefix">The prefix for the subindex.</param>
  1852. <param name="index">The index value.</param>
  1853. </member>
  1854. <member name="M:System.Web.Mvc.DefaultModelBinder.CreateSubPropertyName(System.String,System.String)">
  1855. <summary>Creates the name of the subproperty by using the specified prefix and property name.</summary>
  1856. <returns>The name of the subproperty.</returns>
  1857. <param name="prefix">The prefix for the subproperty.</param>
  1858. <param name="propertyName">The name of the property.</param>
  1859. </member>
  1860. <member name="M:System.Web.Mvc.DefaultModelBinder.GetFilteredModelProperties(System.Web.Mvc.ControllerContext,System.Web.Mvc.ModelBindingContext)">
  1861. <summary>Returns a set of properties that match the property filter restrictions that are established by the specified <paramref name="binding context" />.</summary>
  1862. <returns>An enumerable set of property descriptors.</returns>
  1863. <param name="controllerContext">The context within which the controller operates. The context information includes the controller, HTTP content, request context, and route data.</param>
  1864. <param name="bindingContext">The context within which the model is bound. The context includes information such as the model object, model name, model type, property filter, and value provider.</param>
  1865. </member>
  1866. <member name="M:System.Web.Mvc.DefaultModelBinder.GetModelProperties(System.Web.Mvc.ControllerContext,System.Web.Mvc.ModelBindingContext)">
  1867. <summary>Returns the properties of the model by using the specified controller context and binding context.</summary>
  1868. <returns>A collection of property descriptors.</returns>
  1869. <param name="controllerContext">The context within which the controller operates. The context information includes the controller, HTTP content, request context, and route data.</param>
  1870. <param name="bindingContext">The context within which the model is bound. The context includes information such as the model object, model name, model type, property filter, and value provider.</param>
  1871. </member>
  1872. <member name="M:System.Web.Mvc.DefaultModelBinder.GetPropertyValue(System.Web.Mvc.ControllerContext,System.Web.Mvc.ModelBindingContext,System.ComponentModel.PropertyDescriptor,System.Web.Mvc.IModelBinder)">
  1873. <summary>Returns the value of a property using the specified controller context, binding context, property descriptor, and property binder.</summary>
  1874. <returns>An object that represents the property value.</returns>
  1875. <param name="controllerContext">The context within which the controller operates. The context information includes the controller, HTTP content, request context, and route data.</param>
  1876. <param name="bindingContext">The context within which the model is bound. The context includes information such as the model object, model name, model type, property filter, and value provider.</param>
  1877. <param name="propertyDescriptor">The descriptor for the property to access. The descriptor provides information such as the component type, property type, and property value. It also provides methods to get or set the property value.</param>
  1878. <param name="propertyBinder">An object that provides a way to bind the property.</param>
  1879. </member>
  1880. <member name="M:System.Web.Mvc.DefaultModelBinder.GetTypeDescriptor(System.Web.Mvc.ControllerContext,System.Web.Mvc.ModelBindingContext)">
  1881. <summary>Returns the descriptor object for a type that is specified by its controller context and binding context.</summary>
  1882. <returns>A custom type descriptor object.</returns>
  1883. <param name="controllerContext">The context within which the controller operates. The context information includes the controller, HTTP content, request context, and route data.</param>
  1884. <param name="bindingContext">The context within which the model is bound. The context includes information such as the model object, model name, model type, property filter, and value provider.</param>
  1885. </member>
  1886. <member name="M:System.Web.Mvc.DefaultModelBinder.IsModelValid(System.Web.Mvc.ModelBindingContext)">
  1887. <summary>Determines whether a data model is valid for the specified binding context.</summary>
  1888. <returns>true if the model is valid; otherwise, false.</returns>
  1889. <param name="bindingContext">The context within which the model is bound. The context includes information such as the model object, model name, model type, property filter, and value provider.</param>
  1890. <exception cref="T:System.ArgumentNullException">The <paramref name="bindingContext" /> parameter is null.</exception>
  1891. </member>
  1892. <member name="M:System.Web.Mvc.DefaultModelBinder.OnModelUpdated(System.Web.Mvc.ControllerContext,System.Web.Mvc.ModelBindingContext)">
  1893. <summary>Called when the model is updated.</summary>
  1894. <param name="controllerContext">The context within which the controller operates. The context information includes the controller, HTTP content, request context, and route data.</param>
  1895. <param name="bindingContext">The context within which the model is bound. The context includes information such as the model object, model name, model type, property filter, and value provider.</param>
  1896. </member>
  1897. <member name="M:System.Web.Mvc.DefaultModelBinder.OnModelUpdating(System.Web.Mvc.ControllerContext,System.Web.Mvc.ModelBindingContext)">
  1898. <summary>Called when the model is updating.</summary>
  1899. <returns>true if the model is updating; otherwise, false.</returns>
  1900. <param name="controllerContext">The context within which the controller operates. The context information includes the controller, HTTP content, request context, and route data.</param>
  1901. <param name="bindingContext">The context within which the model is bound. The context includes information such as the model object, model name, model type, property filter, and value provider.</param>
  1902. </member>
  1903. <member name="M:System.Web.Mvc.DefaultModelBinder.OnPropertyValidated(System.Web.Mvc.ControllerContext,System.Web.Mvc.ModelBindingContext,System.ComponentModel.PropertyDescriptor,System.Object)">
  1904. <summary>Called when the specified property is validated.</summary>
  1905. <param name="controllerContext">The context within which the controller operates. The context information includes the controller, HTTP content, request context, and route data.</param>
  1906. <param name="bindingContext">The context within which the model is bound. The context includes information such as the model object, model name, model type, property filter, and value provider.</param>
  1907. <param name="propertyDescriptor">Describes a property to be validated. The descriptor provides information such as the component type, property type, and property value. It also provides methods to get or set the property value.</param>
  1908. <param name="value">The value to set for the property.</param>
  1909. </member>
  1910. <member name="M:System.Web.Mvc.DefaultModelBinder.OnPropertyValidating(System.Web.Mvc.ControllerContext,System.Web.Mvc.ModelBindingContext,System.ComponentModel.PropertyDescriptor,System.Object)">
  1911. <summary>Called when the specified property is validating.</summary>
  1912. <returns>true if the property is validating; otherwise, false.</returns>
  1913. <param name="controllerContext">The context within which the controller operates. The context information includes the controller, HTTP content, request context, and route data.</param>
  1914. <param name="bindingContext">The context within which the model is bound. The context includes information such as the model object, model name, model type, property filter, and value provider.</param>
  1915. <param name="propertyDescriptor">Describes a property being validated. The descriptor provides information such as component type, property type, and property value. It also provides methods to get or set the property value.</param>
  1916. <param name="value">The value to set for the property.</param>
  1917. </member>
  1918. <member name="P:System.Web.Mvc.DefaultModelBinder.ResourceClassKey">
  1919. <summary>Gets or sets the name of the resource file (class key) that contains localized string values.</summary>
  1920. <returns>The name of the resource file (class key).</returns>
  1921. </member>
  1922. <member name="M:System.Web.Mvc.DefaultModelBinder.SetProperty(System.Web.Mvc.ControllerContext,System.Web.Mvc.ModelBindingContext,System.ComponentModel.PropertyDescriptor,System.Object)">
  1923. <summary>Sets the specified property by using the specified controller context, binding context, and property value.</summary>
  1924. <param name="controllerContext">The context within which the controller operates. The context information includes the controller, HTTP content, request context, and route data.</param>
  1925. <param name="bindingContext">The context within which the model is bound. The context includes information such as the model object, model name, model type, property filter, and value provider.</param>
  1926. <param name="propertyDescriptor">Describes a property to be set. The descriptor provides information such as the component type, property type, and property value. It also provides methods to get or set the property value.</param>
  1927. <param name="value">The value to set for the property.</param>
  1928. </member>
  1929. <member name="T:System.Web.Mvc.DefaultViewLocationCache">
  1930. <summary>Represents a memory cache for view locations.</summary>
  1931. </member>
  1932. <member name="M:System.Web.Mvc.DefaultViewLocationCache.#ctor">
  1933. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.DefaultViewLocationCache" /> class.</summary>
  1934. </member>
  1935. <member name="M:System.Web.Mvc.DefaultViewLocationCache.#ctor(System.TimeSpan)">
  1936. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.DefaultViewLocationCache" /> class by using the specified cache time span.</summary>
  1937. <param name="timeSpan">The cache time span.</param>
  1938. <exception cref="T:System.InvalidOperationException">The Ticks attribute of the <paramref name="timeSpan" /> parameter is set to a negative number.</exception>
  1939. </member>
  1940. <member name="M:System.Web.Mvc.DefaultViewLocationCache.GetViewLocation(System.Web.HttpContextBase,System.String)">
  1941. <summary>Retrieves the default view location by using the specified HTTP context and cache key.</summary>
  1942. <returns>The default view location.</returns>
  1943. <param name="httpContext">The HTTP context.</param>
  1944. <param name="key">The cache key</param>
  1945. <exception cref="T:System.ArgumentNullException">The <paramref name="httpContext" /> parameter is null.</exception>
  1946. </member>
  1947. <member name="M:System.Web.Mvc.DefaultViewLocationCache.InsertViewLocation(System.Web.HttpContextBase,System.String,System.String)">
  1948. <summary>Inserts the view in the specified virtual path by using the specified HTTP context, cache key, and virtual path.</summary>
  1949. <param name="httpContext">The HTTP context.</param>
  1950. <param name="key">The cache key.</param>
  1951. <param name="virtualPath">The virtual path</param>
  1952. <exception cref="T:System.ArgumentNullException">The <paramref name="httpContext" /> parameter is null.</exception>
  1953. </member>
  1954. <member name="F:System.Web.Mvc.DefaultViewLocationCache.Null">
  1955. <summary>Creates an empty view location cache.</summary>
  1956. </member>
  1957. <member name="P:System.Web.Mvc.DefaultViewLocationCache.TimeSpan">
  1958. <summary>Gets or sets the cache time span.</summary>
  1959. <returns>The cache time span.</returns>
  1960. </member>
  1961. <member name="T:System.Web.Mvc.DependencyResolver">
  1962. <summary>Provides a registration point for dependency resolvers that implement <see cref="T:System.Web.Mvc.IDependencyResolver" /> or the Common Service Locator IServiceLocator interface.</summary>
  1963. </member>
  1964. <member name="M:System.Web.Mvc.DependencyResolver.#ctor">
  1965. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.DependencyResolver" /> class.</summary>
  1966. </member>
  1967. <member name="P:System.Web.Mvc.DependencyResolver.Current">
  1968. <summary>Gets the implementation of the dependency resolver.</summary>
  1969. <returns>The implementation of the dependency resolver.</returns>
  1970. </member>
  1971. <member name="P:System.Web.Mvc.DependencyResolver.InnerCurrent">
  1972. <summary>This API supports the ASP.NET MVC infrastructure and is not intended to be used directly from your code.</summary>
  1973. <returns>The implementation of the dependency resolver.</returns>
  1974. </member>
  1975. <member name="M:System.Web.Mvc.DependencyResolver.InnerSetResolver(System.Func`2,System.Boolean)">
  1976. <summary>This API supports the ASP.NET MVC infrastructure and is not intended to be used directly from your code.</summary>
  1977. <param name="getService">The function that provides the service.</param>
  1978. <param name="getServices">The function that provides the services.</param>
  1979. </member>
  1980. <member name="M:System.Web.Mvc.DependencyResolver.InnerSetResolver(System.Object)">
  1981. <summary>This API supports the ASP.NET MVC infrastructure and is not intended to be used directly from your code.</summary>
  1982. <param name="commonServiceLocator">The common service locator.</param>
  1983. </member>
  1984. <member name="M:System.Web.Mvc.DependencyResolver.InnerSetResolver(System.Web.Mvc.IDependencyResolver)">
  1985. <summary>This API supports the ASP.NET MVC infrastructure and is not intended to be used directly from your code.</summary>
  1986. <param name="resolver">The object that implements the dependency resolver.</param>
  1987. </member>
  1988. <member name="M:System.Web.Mvc.DependencyResolver.SetResolver(System.Func`2,System.Boolean)">
  1989. <summary>Provides a registration point for dependency resolvers using the specified service delegate and specified service collection delegates.</summary>
  1990. <param name="getService">The service delegate.</param>
  1991. <param name="getServices">The services delegates.</param>
  1992. </member>
  1993. <member name="M:System.Web.Mvc.DependencyResolver.SetResolver(System.Object)">
  1994. <summary>Provides a registration point for dependency resolvers using the provided common service locator when using a service locator interface.</summary>
  1995. <param name="commonServiceLocator">The common service locator.</param>
  1996. </member>
  1997. <member name="M:System.Web.Mvc.DependencyResolver.SetResolver(System.Web.Mvc.IDependencyResolver)">
  1998. <summary>Provides a registration point for dependency resolvers, using the specified dependency resolver interface.</summary>
  1999. <param name="resolver">The dependency resolver.</param>
  2000. </member>
  2001. <member name="T:System.Web.Mvc.DependencyResolverExtensions">
  2002. <summary>Provides a type-safe implementation of <see cref="M:System.Web.Mvc.IDependencyResolver.GetService(System.Type)" /> and <see cref="M:System.Web.Mvc.IDependencyResolver.GetServices(System.Type)" />.</summary>
  2003. </member>
  2004. <member name="M:System.Web.Mvc.DependencyResolverExtensions.GetService``1(System.Web.Mvc.IDependencyResolver)">
  2005. <summary>Resolves singly registered services that support arbitrary object creation.</summary>
  2006. <returns>The requested service or object.</returns>
  2007. <param name="resolver">The dependency resolver instance that this method extends.</param>
  2008. <typeparam name="TService">The type of the requested service or object.</typeparam>
  2009. </member>
  2010. <member name="M:System.Web.Mvc.DependencyResolverExtensions.GetServices``1(System.Web.Mvc.IDependencyResolver)">
  2011. <summary>Resolves multiply registered services.</summary>
  2012. <returns>The requested services.</returns>
  2013. <param name="resolver">The dependency resolver instance that this method extends.</param>
  2014. <typeparam name="TService">The type of the requested services.</typeparam>
  2015. </member>
  2016. <member name="T:System.Web.Mvc.DictionaryValueProvider`1">
  2017. <summary>Represents the base class for value providers whose values come from a collection that implements the <see cref="T:System.Collections.Generic.IDictionary`2" /> interface.</summary>
  2018. <typeparam name="TValue">The type of the value.</typeparam>
  2019. </member>
  2020. <member name="M:System.Web.Mvc.DictionaryValueProvider`1.#ctor(System.Collections.Generic.IDictionary{System.String,`0},System.Globalization.CultureInfo)">
  2021. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.DictionaryValueProvider`1" /> class.</summary>
  2022. <param name="dictionary">The name/value pairs that are used to initialize the value provider.</param>
  2023. <param name="culture">Information about a specific culture, such as the names of the culture, the writing system, and the calendar used.</param>
  2024. <exception cref="T:System.ArgumentNullException">The <paramref name="dictionary" /> parameter is null.</exception>
  2025. </member>
  2026. <member name="M:System.Web.Mvc.DictionaryValueProvider`1.ContainsPrefix(System.String)">
  2027. <summary>Determines whether the collection contains the specified prefix.</summary>
  2028. <returns>true if the collection contains the specified prefix; otherwise, false.</returns>
  2029. <param name="prefix">The prefix to search for.</param>
  2030. <exception cref="T:System.ArgumentNullException">The <paramref name="prefix" /> parameter is null.</exception>
  2031. </member>
  2032. <member name="M:System.Web.Mvc.DictionaryValueProvider`1.GetValue(System.String)">
  2033. <summary>Returns a value object using the specified key and controller context.</summary>
  2034. <returns>The value object for the specified key.</returns>
  2035. <param name="key">The key of the value object to retrieve.</param>
  2036. <exception cref="T:System.ArgumentNullException">The <paramref name="key" /> parameter is null.</exception>
  2037. </member>
  2038. <member name="T:System.Web.Mvc.EmptyModelMetadataProvider">
  2039. <summary>Provides an empty metadata provider for data models that do not require metadata.</summary>
  2040. </member>
  2041. <member name="M:System.Web.Mvc.EmptyModelMetadataProvider.#ctor">
  2042. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.EmptyModelMetadataProvider" /> class.</summary>
  2043. </member>
  2044. <member name="M:System.Web.Mvc.EmptyModelMetadataProvider.CreateMetadata(System.Collections.Generic.IEnumerable{System.Attribute},System.Type,System.Func`1,System.Void,System.Object)">
  2045. <summary>Creates a new instance of the <see cref="T:System.Web.Mvc.ModelMetadata" /> class.</summary>
  2046. <returns>Returns <see cref="T:System.Web.Mvc.ModelMetadata" />.</returns>
  2047. <param name="attributes">The attributes.</param>
  2048. <param name="containerType">The type of the container.</param>
  2049. <param name="modelAccessor">The model accessor.</param>
  2050. <param name="modelType">The type of the model.</param>
  2051. <param name="propertyName">The name of the model.</param>
  2052. </member>
  2053. <member name="T:System.Web.Mvc.EmptyModelValidatorProvider">
  2054. <summary>Provides an empty validation provider for models that do not require a validator.</summary>
  2055. </member>
  2056. <member name="M:System.Web.Mvc.EmptyModelValidatorProvider.#ctor">
  2057. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.EmptyModelValidatorProvider" /> class.</summary>
  2058. </member>
  2059. <member name="M:System.Web.Mvc.EmptyModelValidatorProvider.GetValidators(System.Web.Mvc.ModelMetadata,System.Web.Mvc.ControllerContext)">
  2060. <summary>Gets the empty model validator.</summary>
  2061. <returns>The empty model validator.</returns>
  2062. <param name="metadata">The metadata.</param>
  2063. <param name="context">The context.</param>
  2064. </member>
  2065. <member name="T:System.Web.Mvc.EmptyResult">
  2066. <summary>Represents a result that does nothing, such as a controller action method that returns nothing.</summary>
  2067. </member>
  2068. <member name="M:System.Web.Mvc.EmptyResult.#ctor">
  2069. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.EmptyResult" /> class.</summary>
  2070. </member>
  2071. <member name="M:System.Web.Mvc.EmptyResult.ExecuteResult(System.Web.Mvc.ControllerContext)">
  2072. <summary>Executes the specified result context.</summary>
  2073. <param name="context">The result context.</param>
  2074. </member>
  2075. <member name="T:System.Web.Mvc.ExceptionContext">
  2076. <summary>Provides the context for using the <see cref="T:System.Web.Mvc.HandleErrorAttribute" /> class.</summary>
  2077. </member>
  2078. <member name="M:System.Web.Mvc.ExceptionContext.#ctor">
  2079. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ExceptionContext" /> class.</summary>
  2080. </member>
  2081. <member name="M:System.Web.Mvc.ExceptionContext.#ctor(System.Web.Mvc.ControllerContext,System.Exception)">
  2082. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ExceptionContext" /> class for the specified exception by using the specified controller context.</summary>
  2083. <param name="controllerContext">The controller context.</param>
  2084. <param name="exception">The exception.</param>
  2085. <exception cref="T:System.ArgumentNullException">The <paramref name="exception" /> parameter is null.</exception>
  2086. </member>
  2087. <member name="P:System.Web.Mvc.ExceptionContext.Exception">
  2088. <summary>Gets or sets the exception object.</summary>
  2089. <returns>The exception object.</returns>
  2090. </member>
  2091. <member name="P:System.Web.Mvc.ExceptionContext.ExceptionHandled">
  2092. <summary>Gets or sets a value that indicates whether the exception has been handled.</summary>
  2093. <returns>true if the exception has been handled; otherwise, false.</returns>
  2094. </member>
  2095. <member name="P:System.Web.Mvc.ExceptionContext.Result">
  2096. <summary>Gets or sets the action result.</summary>
  2097. <returns>The action result.</returns>
  2098. </member>
  2099. <member name="T:System.Web.Mvc.ExpressionHelper">
  2100. <summary>Provides a helper class to get the model name from an expression.</summary>
  2101. </member>
  2102. <member name="M:System.Web.Mvc.ExpressionHelper.GetExpressionText(System.Linq.Expressions.LambdaExpression)">
  2103. <summary>Gets the model name from a lambda expression.</summary>
  2104. <returns>The model name.</returns>
  2105. <param name="expression">The expression.</param>
  2106. </member>
  2107. <member name="M:System.Web.Mvc.ExpressionHelper.GetExpressionText(System.String)">
  2108. <summary>Gets the model name from a string expression.</summary>
  2109. <returns>The model name.</returns>
  2110. <param name="expression">The expression.</param>
  2111. </member>
  2112. <member name="T:System.Web.Mvc.FieldValidationMetadata">
  2113. <summary>Provides a container for client-side field validation metadata.</summary>
  2114. </member>
  2115. <member name="M:System.Web.Mvc.FieldValidationMetadata.#ctor">
  2116. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.FieldValidationMetadata" /> class.</summary>
  2117. </member>
  2118. <member name="P:System.Web.Mvc.FieldValidationMetadata.FieldName">
  2119. <summary>Gets or sets the name of the data field.</summary>
  2120. <returns>The name of the data field.</returns>
  2121. </member>
  2122. <member name="P:System.Web.Mvc.FieldValidationMetadata.ReplaceValidationMessageContents">
  2123. <summary>Gets or sets a value that indicates whether the validation message contents should be replaced with the client validation error.</summary>
  2124. <returns>true if the validation message contents should be replaced with the client validation error; otherwise, false.</returns>
  2125. </member>
  2126. <member name="P:System.Web.Mvc.FieldValidationMetadata.ValidationMessageId">
  2127. <summary>Gets or sets the validator message ID.</summary>
  2128. <returns>The validator message ID.</returns>
  2129. </member>
  2130. <member name="P:System.Web.Mvc.FieldValidationMetadata.ValidationRules">
  2131. <summary>Gets the client validation rules.</summary>
  2132. <returns>The client validation rules.</returns>
  2133. </member>
  2134. <member name="T:System.Web.Mvc.FileContentResult">
  2135. <summary>Sends the contents of a binary file to the response.</summary>
  2136. </member>
  2137. <member name="M:System.Web.Mvc.FileContentResult.#ctor(System.Byte[],System.String)">
  2138. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.FileContentResult" /> class by using the specified file contents and content type.</summary>
  2139. <param name="fileContents">The byte array to send to the response.</param>
  2140. <param name="contentType">The content type to use for the response.</param>
  2141. <exception cref="T:System.ArgumentNullException">The <paramref name="fileContents" /> parameter is null.</exception>
  2142. </member>
  2143. <member name="P:System.Web.Mvc.FileContentResult.FileContents">
  2144. <summary>The binary content to send to the response.</summary>
  2145. <returns>The file contents.</returns>
  2146. </member>
  2147. <member name="M:System.Web.Mvc.FileContentResult.WriteFile(System.Web.HttpResponseBase)">
  2148. <summary>Writes the file content to the response.</summary>
  2149. <param name="response">The response.</param>
  2150. </member>
  2151. <member name="T:System.Web.Mvc.FilePathResult">
  2152. <summary>Sends the contents of a file to the response.</summary>
  2153. </member>
  2154. <member name="M:System.Web.Mvc.FilePathResult.#ctor(System.String,System.String)">
  2155. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.FilePathResult" /> class by using the specified file name and content type.</summary>
  2156. <param name="fileName">The name of the file to send to the response.</param>
  2157. <param name="contentType">The content type of the response.</param>
  2158. <exception cref="T:System.ArgumentException">The <paramref name="fileName" /> parameter is null or empty.</exception>
  2159. </member>
  2160. <member name="P:System.Web.Mvc.FilePathResult.FileName">
  2161. <summary>Gets or sets the path of the file that is sent to the response.</summary>
  2162. <returns>The path of the file that is sent to the response.</returns>
  2163. </member>
  2164. <member name="M:System.Web.Mvc.FilePathResult.WriteFile(System.Web.HttpResponseBase)">
  2165. <summary>Writes the file to the response.</summary>
  2166. <param name="response">The response.</param>
  2167. </member>
  2168. <member name="T:System.Web.Mvc.FileResult">
  2169. <summary>Represents a base class that is used to send binary file content to the response.</summary>
  2170. </member>
  2171. <member name="M:System.Web.Mvc.FileResult.#ctor(System.String)">
  2172. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.FileResult" /> class.</summary>
  2173. <param name="contentType">The type of the content.</param>
  2174. <exception cref="T:System.ArgumentException">The <paramref name="contentType" /> parameter is null or empty.</exception>
  2175. </member>
  2176. <member name="P:System.Web.Mvc.FileResult.ContentType">
  2177. <summary>Gets the content type to use for the response.</summary>
  2178. <returns>The type of the content.</returns>
  2179. </member>
  2180. <member name="M:System.Web.Mvc.FileResult.ExecuteResult(System.Web.Mvc.ControllerContext)">
  2181. <summary>Enables processing of the result of an action method by a custom type that inherits from the <see cref="T:System.Web.Mvc.ActionResult" /> class.</summary>
  2182. <param name="context">The context within which the result is executed.</param>
  2183. <exception cref="T:System.ArgumentNullException">The <paramref name="context" /> parameter is null.</exception>
  2184. </member>
  2185. <member name="P:System.Web.Mvc.FileResult.FileDownloadName">
  2186. <summary>Gets or sets the content-disposition header so that a file-download dialog box is displayed in the browser with the specified file name.</summary>
  2187. <returns>The name of the file.</returns>
  2188. </member>
  2189. <member name="M:System.Web.Mvc.FileResult.WriteFile(System.Web.HttpResponseBase)">
  2190. <summary>Writes the file to the response.</summary>
  2191. <param name="response">The response.</param>
  2192. </member>
  2193. <member name="T:System.Web.Mvc.FileStreamResult">
  2194. <summary>Sends binary content to the response by using a <see cref="T:System.IO.Stream" /> instance.</summary>
  2195. </member>
  2196. <member name="M:System.Web.Mvc.FileStreamResult.#ctor(System.IO.Stream,System.String)">
  2197. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.FileStreamResult" /> class.</summary>
  2198. <param name="fileStream">The stream to send to the response.</param>
  2199. <param name="contentType">The content type to use for the response.</param>
  2200. <exception cref="T:System.ArgumentNullException">The <paramref name="fileStream" /> parameter is null.</exception>
  2201. </member>
  2202. <member name="P:System.Web.Mvc.FileStreamResult.FileStream">
  2203. <summary>Gets the stream that will be sent to the response.</summary>
  2204. <returns>The file stream.</returns>
  2205. </member>
  2206. <member name="M:System.Web.Mvc.FileStreamResult.WriteFile(System.Web.HttpResponseBase)">
  2207. <summary>Writes the file to the response.</summary>
  2208. <param name="response">The response.</param>
  2209. </member>
  2210. <member name="T:System.Web.Mvc.Filter">
  2211. <summary>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.</summary>
  2212. </member>
  2213. <member name="M:System.Web.Mvc.Filter.#ctor(System.Object,System.Web.Mvc.FilterScope,System.Nullable{System.Int32})">
  2214. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.Filter" /> class.</summary>
  2215. <param name="instance">The instance.</param>
  2216. <param name="scope">The scope.</param>
  2217. <param name="order">The order.</param>
  2218. </member>
  2219. <member name="F:System.Web.Mvc.Filter.DefaultOrder">
  2220. <summary>Represents a constant that is used to specify the default ordering of filters.</summary>
  2221. </member>
  2222. <member name="P:System.Web.Mvc.Filter.Instance">
  2223. <summary>Gets the instance of this class.</summary>
  2224. <returns>The instance of this class.</returns>
  2225. </member>
  2226. <member name="P:System.Web.Mvc.Filter.Order">
  2227. <summary>Gets the order in which the filter is applied.</summary>
  2228. <returns>The order in which the filter is applied.</returns>
  2229. </member>
  2230. <member name="P:System.Web.Mvc.Filter.Scope">
  2231. <summary>Gets the scope ordering of the filter.</summary>
  2232. <returns>The scope ordering of the filter.</returns>
  2233. </member>
  2234. <member name="T:System.Web.Mvc.FilterAttribute">
  2235. <summary>Represents the base class for action-filter attributes.</summary>
  2236. </member>
  2237. <member name="M:System.Web.Mvc.FilterAttribute.#ctor">
  2238. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.FilterAttribute" /> class.</summary>
  2239. </member>
  2240. <member name="P:System.Web.Mvc.FilterAttribute.AllowMultiple">
  2241. <summary>Gets or sets a value that indicates whether more than one instance of the filter attribute can be specified.</summary>
  2242. <returns>true if more than one instance of the filter attribute can be specified; otherwise, false.</returns>
  2243. </member>
  2244. <member name="P:System.Web.Mvc.FilterAttribute.Order">
  2245. <summary>Gets or sets the order in which the action filters are executed.</summary>
  2246. <returns>The order in which the action filters are executed.</returns>
  2247. </member>
  2248. <member name="T:System.Web.Mvc.FilterAttributeFilterProvider">
  2249. <summary>Defines a filter provider for filter attributes.</summary>
  2250. </member>
  2251. <member name="M:System.Web.Mvc.FilterAttributeFilterProvider.#ctor">
  2252. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.FilterAttributeFilterProvider" /> class.</summary>
  2253. </member>
  2254. <member name="M:System.Web.Mvc.FilterAttributeFilterProvider.GetActionAttributes(System.Web.Mvc.ControllerContext,System.Web.Mvc.ActionDescriptor)">
  2255. <summary>Gets a collection of custom action attributes.</summary>
  2256. <returns>A collection of custom action attributes.</returns>
  2257. <param name="controllerContext">The controller context.</param>
  2258. <param name="actionDescriptor">The action descriptor.</param>
  2259. </member>
  2260. <member name="M:System.Web.Mvc.FilterAttributeFilterProvider.GetControllerAttributes(System.Web.Mvc.ControllerContext,System.Web.Mvc.ActionDescriptor)">
  2261. <summary>Gets a collection of controller attributes.</summary>
  2262. <returns>A collection of controller attributes.</returns>
  2263. <param name="controllerContext">The controller context.</param>
  2264. <param name="actionDescriptor">The action descriptor.</param>
  2265. </member>
  2266. <member name="M:System.Web.Mvc.FilterAttributeFilterProvider.GetFilters(System.Web.Mvc.ControllerContext,System.Web.Mvc.ActionDescriptor)">
  2267. <summary>Aggregates the filters from all of the filter providers into one collection.</summary>
  2268. <returns>The collection filters from all of the filter providers.</returns>
  2269. <param name="controllerContext">The controller context.</param>
  2270. <param name="actionDescriptor">The action descriptor.</param>
  2271. </member>
  2272. <member name="T:System.Web.Mvc.FilterInfo">
  2273. <summary>Encapsulates information about the available action filters.</summary>
  2274. </member>
  2275. <member name="M:System.Web.Mvc.FilterInfo.#ctor">
  2276. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.FilterInfo" /> class.</summary>
  2277. </member>
  2278. <member name="M:System.Web.Mvc.FilterInfo.#ctor(System.Collections.Generic.IEnumerable{System.Web.Mvc.Filter})">
  2279. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.FilterInfo" /> class using the specified filters collection.</summary>
  2280. <param name="filters">The filters collection.</param>
  2281. </member>
  2282. <member name="P:System.Web.Mvc.FilterInfo.ActionFilters">
  2283. <summary>Gets all the action filters in the application.</summary>
  2284. <returns>The action filters.</returns>
  2285. </member>
  2286. <member name="P:System.Web.Mvc.FilterInfo.AuthorizationFilters">
  2287. <summary>Gets all the authorization filters in the application.</summary>
  2288. <returns>The authorization filters.</returns>
  2289. </member>
  2290. <member name="P:System.Web.Mvc.FilterInfo.ExceptionFilters">
  2291. <summary>Gets all the exception filters in the application.</summary>
  2292. <returns>The exception filters.</returns>
  2293. </member>
  2294. <member name="P:System.Web.Mvc.FilterInfo.ResultFilters">
  2295. <summary>Gets all the result filters in the application.</summary>
  2296. <returns>The result filters.</returns>
  2297. </member>
  2298. <member name="T:System.Web.Mvc.FilterProviderCollection">
  2299. <summary>Represents the collection of filter providers for the application.</summary>
  2300. </member>
  2301. <member name="M:System.Web.Mvc.FilterProviderCollection.#ctor">
  2302. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.FilterProviderCollection" /> class.</summary>
  2303. </member>
  2304. <member name="M:System.Web.Mvc.FilterProviderCollection.#ctor(System.Collections.Generic.IList{System.Web.Mvc.IFilterProvider})">
  2305. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.FilterProviderCollection" /> class using the filter providers collection.</summary>
  2306. <param name="providers">The filter providers collection.</param>
  2307. </member>
  2308. <member name="M:System.Web.Mvc.FilterProviderCollection.GetFilters(System.Web.Mvc.ControllerContext,System.Web.Mvc.ActionDescriptor)">
  2309. <summary>Returns the collection of filter providers.</summary>
  2310. <returns>The collection of filter providers.</returns>
  2311. <param name="controllerContext">The controller context.</param>
  2312. <param name="actionDescriptor">The action descriptor.</param>
  2313. </member>
  2314. <member name="T:System.Web.Mvc.FilterProviders">
  2315. <summary>Provides a registration point for filters.</summary>
  2316. </member>
  2317. <member name="P:System.Web.Mvc.FilterProviders.Providers">
  2318. <summary>Provides a registration point for filters.</summary>
  2319. <returns>The collection of filters.</returns>
  2320. </member>
  2321. <member name="T:System.Web.Mvc.FilterScope">
  2322. <summary>Defines values that specify the order in which ASP.NET MVC filters run within the same filter type and filter order.</summary>
  2323. </member>
  2324. <member name="F:System.Web.Mvc.FilterScope.First">
  2325. <summary>Specifies first.</summary>
  2326. </member>
  2327. <member name="F:System.Web.Mvc.FilterScope.Global">
  2328. <summary>Specifies an order before <see cref="F:System.Web.Mvc.FilterScope.Controller" /> and after <see cref="F:System.Web.Mvc.FilterScope.First" />.</summary>
  2329. </member>
  2330. <member name="F:System.Web.Mvc.FilterScope.Controller">
  2331. <summary>Specifies an order before <see cref="F:System.Web.Mvc.FilterScope.Action" /> and after <see cref="F:System.Web.Mvc.FilterScope.Global" />.</summary>
  2332. </member>
  2333. <member name="F:System.Web.Mvc.FilterScope.Action">
  2334. <summary>Specifies an order before <see cref="F:System.Web.Mvc.FilterScope.Last" /> and after <see cref="F:System.Web.Mvc.FilterScope.Controller" />.</summary>
  2335. </member>
  2336. <member name="F:System.Web.Mvc.FilterScope.Last">
  2337. <summary>Specifies last.</summary>
  2338. </member>
  2339. <member name="T:System.Web.Mvc.FormCollection">
  2340. <summary>Contains the form value providers for the application.</summary>
  2341. </member>
  2342. <member name="M:System.Web.Mvc.FormCollection.#ctor">
  2343. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.FormCollection" /> class.</summary>
  2344. </member>
  2345. <member name="M:System.Web.Mvc.FormCollection.#ctor(System.Collections.Specialized.NameValueCollection)">
  2346. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.FormCollection" /> class.</summary>
  2347. <param name="collection">The collection.</param>
  2348. <exception cref="T:System.ArgumentNullException">The <paramref name="collection" /> parameter is null.</exception>
  2349. </member>
  2350. <member name="M:System.Web.Mvc.FormCollection.GetValue(System.String)">
  2351. <summary>Gets the specified value provider.</summary>
  2352. <returns>The value provider.</returns>
  2353. <param name="name">The name of the value provider to get.</param>
  2354. <exception cref="T:System.ArgumentException">The <paramref name="name" /> parameter is null or empty.</exception>
  2355. </member>
  2356. <member name="M:System.Web.Mvc.FormCollection.System#Web#Mvc#IValueProvider#ContainsPrefix(System.String)">
  2357. <summary>Gets a value that indicates whether the value provider contains an entry that has the specified prefix.</summary>
  2358. <returns>true if the value provider contains an entry that has the specified prefix; otherwise, false.</returns>
  2359. <param name="prefix">The prefix to look for.</param>
  2360. </member>
  2361. <member name="M:System.Web.Mvc.FormCollection.System#Web#Mvc#IValueProvider#GetValue(System.String)">
  2362. <summary>Gets a value from a value provider using the specified key.</summary>
  2363. <returns>A value from a value provider.</returns>
  2364. <param name="key">The key.</param>
  2365. </member>
  2366. <member name="M:System.Web.Mvc.FormCollection.ToValueProvider">
  2367. <summary>Returns a dictionary that contains the value providers.</summary>
  2368. <returns>A dictionary of value providers.</returns>
  2369. </member>
  2370. <member name="T:System.Web.Mvc.FormContext">
  2371. <summary>Encapsulates information that is required in order to validate and process the input data from an HTML form.</summary>
  2372. </member>
  2373. <member name="M:System.Web.Mvc.FormContext.#ctor">
  2374. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.FormContext" /> class.</summary>
  2375. </member>
  2376. <member name="P:System.Web.Mvc.FormContext.FieldValidators">
  2377. <summary>Gets the field validators for the form.</summary>
  2378. <returns>A dictionary of field validators for the form.</returns>
  2379. </member>
  2380. <member name="P:System.Web.Mvc.FormContext.FormId">
  2381. <summary>Gets or sets the form identifier.</summary>
  2382. <returns>The form identifier.</returns>
  2383. </member>
  2384. <member name="M:System.Web.Mvc.FormContext.GetJsonValidationMetadata">
  2385. <summary>Returns a serialized object that contains the form identifier and field-validation values for the form.</summary>
  2386. <returns>A serialized object that contains the form identifier and field-validation values for the form.</returns>
  2387. </member>
  2388. <member name="M:System.Web.Mvc.FormContext.GetValidationMetadataForField(System.String)">
  2389. <summary>Returns the validation value for the specified input field.</summary>
  2390. <returns>The value to validate the field input with.</returns>
  2391. <param name="fieldName">The name of the field to retrieve the validation value for.</param>
  2392. <exception cref="T:System.ArgumentException">The <paramref name="fieldName" /> parameter is either null or empty.</exception>
  2393. </member>
  2394. <member name="M:System.Web.Mvc.FormContext.GetValidationMetadataForField(System.String,System.Boolean)">
  2395. <summary>Returns the validation value for the specified input field and a value that indicates what to do if the validation value is not found.</summary>
  2396. <returns>The value to validate the field input with.</returns>
  2397. <param name="fieldName">The name of the field to retrieve the validation value for.</param>
  2398. <param name="createIfNotFound">true to create a validation value if one is not found; otherwise, false.</param>
  2399. <exception cref="T:System.ArgumentException">The <paramref name="fieldName" /> parameter is either null or empty.</exception>
  2400. </member>
  2401. <member name="M:System.Web.Mvc.FormContext.RenderedField(System.String)">
  2402. <summary>Returns a value that indicates whether the specified field has been rendered in the form.</summary>
  2403. <returns>true if the field has been rendered; otherwise, false.</returns>
  2404. <param name="fieldName">The field name.</param>
  2405. </member>
  2406. <member name="M:System.Web.Mvc.FormContext.RenderedField(System.String,System.Boolean)">
  2407. <summary>Sets a value that indicates whether the specified field has been rendered in the form.</summary>
  2408. <param name="fieldName">The field name.</param>
  2409. <param name="value">true to specify that the field has been rendered in the form; otherwise, false.</param>
  2410. </member>
  2411. <member name="P:System.Web.Mvc.FormContext.ReplaceValidationSummary">
  2412. <summary>Determines whether client validation errors should be dynamically added to the validation summary.</summary>
  2413. <returns>true if client validation errors should be added to the validation summary; otherwise, false.</returns>
  2414. </member>
  2415. <member name="P:System.Web.Mvc.FormContext.ValidationSummaryId">
  2416. <summary>Gets or sets the identifier for the validation summary.</summary>
  2417. <returns>The identifier for the validation summary.</returns>
  2418. </member>
  2419. <member name="T:System.Web.Mvc.FormMethod">
  2420. <summary>Enumerates the HTTP request types for a form.</summary>
  2421. </member>
  2422. <member name="F:System.Web.Mvc.FormMethod.Get">
  2423. <summary>Specifies a GET request.</summary>
  2424. </member>
  2425. <member name="F:System.Web.Mvc.FormMethod.Post">
  2426. <summary>Specifies a POST request.</summary>
  2427. </member>
  2428. <member name="T:System.Web.Mvc.FormValueProvider">
  2429. <summary>Represents a value provider for form values that are contained in a <see cref="T:System.Collections.Specialized.NameValueCollection" /> object.</summary>
  2430. </member>
  2431. <member name="M:System.Web.Mvc.FormValueProvider.#ctor(System.Web.Mvc.ControllerContext)">
  2432. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.FormValueProvider" /> class.</summary>
  2433. <param name="controllerContext">An object that encapsulates information about the current HTTP request.</param>
  2434. </member>
  2435. <member name="T:System.Web.Mvc.FormValueProviderFactory">
  2436. <summary>Represents a class that is responsible for creating a new instance of a form-value provider object.</summary>
  2437. </member>
  2438. <member name="M:System.Web.Mvc.FormValueProviderFactory.#ctor">
  2439. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.FormValueProviderFactory" /> class.</summary>
  2440. </member>
  2441. <member name="M:System.Web.Mvc.FormValueProviderFactory.GetValueProvider(System.Web.Mvc.ControllerContext)">
  2442. <summary>Returns a form-value provider object for the specified controller context.</summary>
  2443. <returns>A form-value provider object.</returns>
  2444. <param name="controllerContext">An object that encapsulates information about the current HTTP request.</param>
  2445. <exception cref="T:System.ArgumentNullException">The <paramref name="controllerContext" /> parameter is null.</exception>
  2446. </member>
  2447. <member name="T:System.Web.Mvc.GlobalFilterCollection">
  2448. <summary>Represents a class that contains all the global filters.</summary>
  2449. </member>
  2450. <member name="M:System.Web.Mvc.GlobalFilterCollection.#ctor">
  2451. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.GlobalFilterCollection" /> class.</summary>
  2452. </member>
  2453. <member name="M:System.Web.Mvc.GlobalFilterCollection.Add(System.Object)">
  2454. <summary>Adds the specified filter to the global filter collection.</summary>
  2455. <param name="filter">The filter.</param>
  2456. </member>
  2457. <member name="M:System.Web.Mvc.GlobalFilterCollection.Add(System.Object,System.Int32)">
  2458. <summary>Adds the specified filter to the global filter collection using the specified filter run order.</summary>
  2459. <param name="filter">The filter.</param>
  2460. <param name="order">The filter run order.</param>
  2461. </member>
  2462. <member name="M:System.Web.Mvc.GlobalFilterCollection.Clear">
  2463. <summary>Removes all filters from the global filter collection.</summary>
  2464. </member>
  2465. <member name="M:System.Web.Mvc.GlobalFilterCollection.Contains(System.Object)">
  2466. <summary>Determines whether a filter is in the global filter collection.</summary>
  2467. <returns>true if <paramref name="filter" /> is found in the global filter collection; otherwise, false.</returns>
  2468. <param name="filter">The filter.</param>
  2469. </member>
  2470. <member name="P:System.Web.Mvc.GlobalFilterCollection.Count">
  2471. <summary>Gets the number of filters in the global filter collection.</summary>
  2472. <returns>The number of filters in the global filter collection.</returns>
  2473. </member>
  2474. <member name="M:System.Web.Mvc.GlobalFilterCollection.GetEnumerator">
  2475. <summary>Returns an enumerator that iterates through the global filter collection.</summary>
  2476. <returns>An enumerator that iterates through the global filter collection.</returns>
  2477. </member>
  2478. <member name="M:System.Web.Mvc.GlobalFilterCollection.Remove(System.Object)">
  2479. <summary>Removes all the filters that match the specified filter.</summary>
  2480. <param name="filter">The filter to remove.</param>
  2481. </member>
  2482. <member name="M:System.Web.Mvc.GlobalFilterCollection.System#Collections#IEnumerable#GetEnumerator">
  2483. <summary>This API supports the ASP.NET MVC infrastructure and is not intended to be used directly from your code. </summary>
  2484. <returns>An enumerator that iterates through the global filter collection.</returns>
  2485. </member>
  2486. <member name="M:System.Web.Mvc.GlobalFilterCollection.System#Web#Mvc#IFilterProvider#GetFilters(System.Web.Mvc.ControllerContext,System.Web.Mvc.ActionDescriptor)">
  2487. <summary>This API supports the ASP.NET MVC infrastructure and is not intended to be used directly from your code.</summary>
  2488. <returns>An enumerator that iterates through the global filter collection.</returns>
  2489. <param name="controllerContext">The controller context.</param>
  2490. <param name="actionDescriptor">The action descriptor.</param>
  2491. </member>
  2492. <member name="T:System.Web.Mvc.GlobalFilters">
  2493. <summary>Represents the global filter collection.</summary>
  2494. </member>
  2495. <member name="P:System.Web.Mvc.GlobalFilters.Filters">
  2496. <summary>Gets or sets the global filter collection.</summary>
  2497. <returns>The global filter collection.</returns>
  2498. </member>
  2499. <member name="T:System.Web.Mvc.HandleErrorAttribute">
  2500. <summary>Represents an attribute that is used to handle an exception that is thrown by an action method.</summary>
  2501. </member>
  2502. <member name="M:System.Web.Mvc.HandleErrorAttribute.#ctor">
  2503. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.HandleErrorAttribute" /> class.</summary>
  2504. </member>
  2505. <member name="P:System.Web.Mvc.HandleErrorAttribute.ExceptionType">
  2506. <summary>Gets or sets the type of the exception.</summary>
  2507. <returns>The type of the exception.</returns>
  2508. </member>
  2509. <member name="P:System.Web.Mvc.HandleErrorAttribute.Master">
  2510. <summary>Gets or sets the master view for displaying exception information.</summary>
  2511. <returns>The master view.</returns>
  2512. </member>
  2513. <member name="M:System.Web.Mvc.HandleErrorAttribute.OnException(System.Web.Mvc.ExceptionContext)">
  2514. <summary>Called when an exception occurs.</summary>
  2515. <param name="filterContext">The action-filter context.</param>
  2516. <exception cref="T:System.ArgumentNullException">The <paramref name="filterContext" /> parameter is null.</exception>
  2517. </member>
  2518. <member name="P:System.Web.Mvc.HandleErrorAttribute.TypeId">
  2519. <summary>Gets the unique identifier for this attribute.</summary>
  2520. <returns>The unique identifier for this attribute.</returns>
  2521. </member>
  2522. <member name="P:System.Web.Mvc.HandleErrorAttribute.View">
  2523. <summary>Gets or sets the page view for displaying exception information.</summary>
  2524. <returns>The page view.</returns>
  2525. </member>
  2526. <member name="T:System.Web.Mvc.HandleErrorInfo">
  2527. <summary>Encapsulates information for handling an error that was thrown by an action method.</summary>
  2528. </member>
  2529. <member name="M:System.Web.Mvc.HandleErrorInfo.#ctor(System.Exception,System.String,System.String)">
  2530. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.HandleErrorInfo" /> class.</summary>
  2531. <param name="exception">The exception.</param>
  2532. <param name="controllerName">The name of the controller.</param>
  2533. <param name="actionName">The name of the action.</param>
  2534. <exception cref="T:System.ArgumentNullException">The <paramref name="exception" /> parameter is null.</exception>
  2535. <exception cref="T:System.ArgumentException">The <paramref name="controllerName" /> or <paramref name="actionName" /> parameter is null or empty.</exception>
  2536. </member>
  2537. <member name="P:System.Web.Mvc.HandleErrorInfo.ActionName">
  2538. <summary>Gets or sets the name of the action that was executing when the exception was thrown.</summary>
  2539. <returns>The name of the action.</returns>
  2540. </member>
  2541. <member name="P:System.Web.Mvc.HandleErrorInfo.ControllerName">
  2542. <summary>Gets or sets the name of the controller that contains the action method that threw the exception.</summary>
  2543. <returns>The name of the controller.</returns>
  2544. </member>
  2545. <member name="P:System.Web.Mvc.HandleErrorInfo.Exception">
  2546. <summary>Gets or sets the exception object.</summary>
  2547. <returns>The exception object.</returns>
  2548. </member>
  2549. <member name="T:System.Web.Mvc.HiddenInputAttribute">
  2550. <summary>Represents an attribute that is used to indicate whether a property or field value should be rendered as a hidden input element.</summary>
  2551. </member>
  2552. <member name="M:System.Web.Mvc.HiddenInputAttribute.#ctor">
  2553. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.HiddenInputAttribute" /> class.</summary>
  2554. </member>
  2555. <member name="P:System.Web.Mvc.HiddenInputAttribute.DisplayValue">
  2556. <summary>Gets or sets a value that indicates whether to display the value of the hidden input element.</summary>
  2557. <returns>true if the value should be displayed; otherwise, false.</returns>
  2558. </member>
  2559. <member name="T:System.Web.Mvc.HtmlHelper">
  2560. <summary>Represents support for rendering HTML controls in a view.</summary>
  2561. </member>
  2562. <member name="M:System.Web.Mvc.HtmlHelper.#ctor(System.Web.Mvc.ViewContext,System.Web.Mvc.IViewDataContainer)">
  2563. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.HtmlHelper" /> class by using the specified view context and view data container.</summary>
  2564. <param name="viewContext">The view context.</param>
  2565. <param name="viewDataContainer">The view data container.</param>
  2566. <exception cref="T:System.ArgumentNullException">The <paramref name="viewContext" /> or the <paramref name="viewDataContainer" /> parameter is null.</exception>
  2567. </member>
  2568. <member name="M:System.Web.Mvc.HtmlHelper.#ctor(System.Web.Mvc.ViewContext,System.Web.Mvc.IViewDataContainer,System.Web.Routing.RouteCollection)">
  2569. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.HtmlHelper" /> class by using the specified view context, view data container, and route collection.</summary>
  2570. <param name="viewContext">The view context.</param>
  2571. <param name="viewDataContainer">The view data container.</param>
  2572. <param name="routeCollection">The route collection.</param>
  2573. <exception cref="T:System.ArgumentNullException">One or more parameters is null.</exception>
  2574. </member>
  2575. <member name="M:System.Web.Mvc.HtmlHelper.AnonymousObjectToHtmlAttributes(System.Object)">
  2576. <summary>Replaces underscore characters with the dash character for compliance with HTML5.</summary>
  2577. <returns>The HTML attributes with underscore characters replaced by dash characters.</returns>
  2578. <param name="htmlAttributes">The HTML attributes.</param>
  2579. </member>
  2580. <member name="M:System.Web.Mvc.HtmlHelper.AntiForgeryToken">
  2581. <summary>Generates a hidden form field (anti-forgery token) that is validated when the form is submitted.</summary>
  2582. <returns>The generated form field (anti-forgery token).</returns>
  2583. </member>
  2584. <member name="M:System.Web.Mvc.HtmlHelper.AntiForgeryToken(System.String)">
  2585. <summary>Generates a hidden form field (anti-forgery token) that is validated when the form is submitted. The field value is generated using the specified salt value.</summary>
  2586. <returns>The generated form field (anti-forgery token).</returns>
  2587. <param name="salt">The salt value, which can be any non-empty string.</param>
  2588. </member>
  2589. <member name="M:System.Web.Mvc.HtmlHelper.AntiForgeryToken(System.String,System.String,System.String)">
  2590. <summary>Generates a hidden form field (anti-forgery token) that is validated when the form is submitted. The field value is generated using the specified salt value, domain, and path.</summary>
  2591. <returns>The generated form field (anti-forgery token).</returns>
  2592. <param name="salt">The salt value, which can be any non-empty string.</param>
  2593. <param name="domain">The application domain.</param>
  2594. <param name="path">The virtual path.</param>
  2595. </member>
  2596. <member name="M:System.Web.Mvc.HtmlHelper.AttributeEncode(System.Object)">
  2597. <summary>Converts the specified attribute object to an HTML-encoded string.</summary>
  2598. <returns>The HTML-encoded string. If the value parameter is null or empty, this method returns an empty string.</returns>
  2599. <param name="value">The object to encode.</param>
  2600. </member>
  2601. <member name="M:System.Web.Mvc.HtmlHelper.AttributeEncode(System.String)">
  2602. <summary>Converts the specified attribute string to an HTML-encoded string.</summary>
  2603. <returns>The HTML-encoded string. If the value parameter is null or empty, this method returns an empty string.</returns>
  2604. <param name="value">The string to encode.</param>
  2605. </member>
  2606. <member name="P:System.Web.Mvc.HtmlHelper.ClientValidationEnabled">
  2607. <summary>Gets or sets client validation.</summary>
  2608. <returns>true if enable client validation is enabled; otherwise, false.</returns>
  2609. </member>
  2610. <member name="M:System.Web.Mvc.HtmlHelper.EnableClientValidation">
  2611. <summary>Enables input validation that is performed by using client script in the browser.</summary>
  2612. </member>
  2613. <member name="M:System.Web.Mvc.HtmlHelper.EnableClientValidation(System.Boolean)">
  2614. <param name="enabled">true to enable client validation; otherwise, false.</param>
  2615. </member>
  2616. <member name="M:System.Web.Mvc.HtmlHelper.EnableUnobtrusiveJavaScript">
  2617. <summary>Enables unobtrusive JavaScript.</summary>
  2618. </member>
  2619. <member name="M:System.Web.Mvc.HtmlHelper.EnableUnobtrusiveJavaScript(System.Boolean)">
  2620. <param name="enabled">true to enable unobtrusive JavaScript; otherwise, false.</param>
  2621. </member>
  2622. <member name="M:System.Web.Mvc.HtmlHelper.Encode(System.Object)">
  2623. <summary>Converts the value of the specified object to an HTML-encoded string.</summary>
  2624. <returns>The HTML-encoded string.</returns>
  2625. <param name="value">The object to encode.</param>
  2626. </member>
  2627. <member name="M:System.Web.Mvc.HtmlHelper.Encode(System.String)">
  2628. <summary>Converts the specified string to an HTML-encoded string.</summary>
  2629. <returns>The HTML-encoded string.</returns>
  2630. <param name="value">The string to encode.</param>
  2631. </member>
  2632. <member name="M:System.Web.Mvc.HtmlHelper.GenerateIdFromName(System.String)">
  2633. <summary>Creates an HTML element ID using the specified element name.</summary>
  2634. <returns>The ID of the HTML element.</returns>
  2635. <param name="name">The name of the HTML element.</param>
  2636. <exception cref="T:System.ArgumentNullException">The <paramref name="name" /> parameter is null.</exception>
  2637. </member>
  2638. <member name="M:System.Web.Mvc.HtmlHelper.GenerateIdFromName(System.String,System.String)">
  2639. <summary>Creates an HTML element ID using the specified element name and a string that replaces dots in the name.</summary>
  2640. <returns>The ID of the HTML element.</returns>
  2641. <param name="name">The name of the HTML element.</param>
  2642. <param name="idAttributeDotReplacement">The string that replaces dots (.) in the <paramref name="name" /> parameter.</param>
  2643. <exception cref="T:System.ArgumentNullException">The <paramref name="name" /> parameter or the <paramref name="idAttributeDotReplacement" /> parameter is null.</exception>
  2644. </member>
  2645. <member name="M:System.Web.Mvc.HtmlHelper.GenerateLink(System.Web.Routing.RequestContext,System.Web.Routing.RouteCollection,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.Web.Routing.RouteValueDictionary,System.Collections.Generic.IDictionary{System.String,System.Object})">
  2646. <summary>Generates an HTML anchor element (a element) that links to the specified action method, and enables the user to specify the communication protocol, name of the host, and a URL fragment.</summary>
  2647. <returns>An HTML element that links to the specified action method.</returns>
  2648. <param name="requestContext">The context of the HTTP request.</param>
  2649. <param name="routeCollection">The collection of URL routes.</param>
  2650. <param name="linkText">The text caption to display for the link.</param>
  2651. <param name="routeName">The name of the route that is used to return a virtual path.</param>
  2652. <param name="actionName">The name of the action method.</param>
  2653. <param name="controllerName">The name of the controller.</param>
  2654. <param name="protocol">The communication protocol, such as HTTP or HTTPS. If this parameter is null, the protocol defaults to HTTP.</param>
  2655. <param name="hostName">The name of the host.</param>
  2656. <param name="fragment">The fragment identifier.</param>
  2657. <param name="routeValues">An object that contains the parameters for a route.</param>
  2658. <param name="htmlAttributes">An object that contains the HTML attributes for the element.</param>
  2659. </member>
  2660. <member name="M:System.Web.Mvc.HtmlHelper.GenerateLink(System.Web.Routing.RequestContext,System.Web.Routing.RouteCollection,System.String,System.String,System.String,System.String,System.Web.Routing.RouteValueDictionary,System.Collections.Generic.IDictionary{System.String,System.Object})">
  2661. <summary>Generates an HTML anchor element (a element) that links to the specified action method.</summary>
  2662. <returns>An HTML element that links to the specified action method.</returns>
  2663. <param name="requestContext">The context of the HTTP request.</param>
  2664. <param name="routeCollection">The collection of URL routes.</param>
  2665. <param name="linkText">The text caption to display for the link.</param>
  2666. <param name="routeName">The name of the route that is used to return a virtual path.</param>
  2667. <param name="actionName">The name of the action method.</param>
  2668. <param name="controllerName">The name of the controller.</param>
  2669. <param name="routeValues">An object that contains the parameters for a route.</param>
  2670. <param name="htmlAttributes">An object that contains the HTML attributes for the element.</param>
  2671. </member>
  2672. <member name="M:System.Web.Mvc.HtmlHelper.GenerateRouteLink(System.Web.Routing.RequestContext,System.Web.Routing.RouteCollection,System.String,System.String,System.String,System.String,System.String,System.Web.Routing.RouteValueDictionary,System.Collections.Generic.IDictionary{System.String,System.Object})">
  2673. <summary>Generates an HTML anchor element (a element) that links to the specified URL route, and enables the user to specify the communication protocol, name of the host, and a URL fragment.</summary>
  2674. <returns>An HTML element that links to the specified URL route.</returns>
  2675. <param name="requestContext">The context of the HTTP request.</param>
  2676. <param name="routeCollection">The collection of URL routes.</param>
  2677. <param name="linkText">The text caption to display for the link.</param>
  2678. <param name="routeName">The name of the route that is used to return a virtual path.</param>
  2679. <param name="protocol">The communication protocol, such as HTTP or HTTPS. If this parameter is null, the protocol defaults to HTTP.</param>
  2680. <param name="hostName">The name of the host.</param>
  2681. <param name="fragment">The fragment identifier.</param>
  2682. <param name="routeValues">An object that contains the parameters for a route.</param>
  2683. <param name="htmlAttributes">An object that contains the HTML attributes for the element.</param>
  2684. </member>
  2685. <member name="M:System.Web.Mvc.HtmlHelper.GenerateRouteLink(System.Web.Routing.RequestContext,System.Web.Routing.RouteCollection,System.String,System.String,System.Web.Routing.RouteValueDictionary,System.Collections.Generic.IDictionary{System.String,System.Object})">
  2686. <summary>Generates an HTML anchor element (a element) that links to the specified URL route.</summary>
  2687. <returns>An HTML element that links to the specified URL route.</returns>
  2688. <param name="requestContext">The context of the HTTP request.</param>
  2689. <param name="routeCollection">The collection of URL routes.</param>
  2690. <param name="linkText">The text caption to display for the link.</param>
  2691. <param name="routeName">The name of the route that is used to return a virtual path.</param>
  2692. <param name="routeValues">An object that contains the parameters for a route.</param>
  2693. <param name="htmlAttributes">An object that contains the HTML attributes for the element.</param>
  2694. </member>
  2695. <member name="M:System.Web.Mvc.HtmlHelper.GetFormMethodString(System.Web.Mvc.FormMethod)">
  2696. <summary>Returns the HTTP method that handles form input (GET or POST) as a string.</summary>
  2697. <returns>The form method string, either "get" or "post".</returns>
  2698. <param name="method">The HTTP method that handles the form.</param>
  2699. </member>
  2700. <member name="M:System.Web.Mvc.HtmlHelper.GetInputTypeString(System.Web.Mvc.InputType)">
  2701. <summary>Returns the HTML input control type as a string.</summary>
  2702. <returns>The input type string ("checkbox", "hidden", "password", "radio", or "text").</returns>
  2703. <param name="inputType">The enumerated input type.</param>
  2704. </member>
  2705. <member name="M:System.Web.Mvc.HtmlHelper.GetUnobtrusiveValidationAttributes(System.String)">
  2706. <summary>Gets the collection of unobtrusive JavaScript validation attributes using the specified HTML name attribute.</summary>
  2707. <returns>The collection of unobtrusive JavaScript validation attributes.</returns>
  2708. <param name="name">The HTML name attribute.</param>
  2709. </member>
  2710. <member name="M:System.Web.Mvc.HtmlHelper.GetUnobtrusiveValidationAttributes(System.String,System.Web.Mvc.ModelMetadata)">
  2711. <summary>Gets the collection of unobtrusive JavaScript validation attributes using the specified HTML name attribute and model metadata.</summary>
  2712. <returns>The collection of unobtrusive JavaScript validation attributes.</returns>
  2713. <param name="name">The HTML name attribute.</param>
  2714. <param name="metadata">The model metadata.</param>
  2715. </member>
  2716. <member name="M:System.Web.Mvc.HtmlHelper.HttpMethodOverride(System.String)">
  2717. <summary>Returns a hidden input element that identifies the override method for the specified HTTP data-transfer method that was used by the client.</summary>
  2718. <returns>The override method that uses the HTTP data-transfer method that was used by the client.</returns>
  2719. <param name="httpMethod">The HTTP data-transfer method that was used by the client (DELETE, HEAD, or PUT).</param>
  2720. <exception cref="T:System.ArgumentException">The <paramref name="httpVerb" /> parameter is not "PUT", "DELETE", or "HEAD".</exception>
  2721. </member>
  2722. <member name="M:System.Web.Mvc.HtmlHelper.HttpMethodOverride(System.Web.Mvc.HttpVerbs)">
  2723. <summary>Returns a hidden input element that identifies the override method for the specified verb that represents the HTTP data-transfer method used by the client.</summary>
  2724. <returns>The override method that uses the verb that represents the HTTP data-transfer method used by the client.</returns>
  2725. <param name="httpVerb">The verb that represents the HTTP data-transfer method used by the client.</param>
  2726. <exception cref="T:System.ArgumentException">The <paramref name="httpVerb" /> parameter is not "PUT", "DELETE", or "HEAD".</exception>
  2727. </member>
  2728. <member name="P:System.Web.Mvc.HtmlHelper.IdAttributeDotReplacement">
  2729. <summary>Gets or sets the character that replaces periods in the ID attribute of an element.</summary>
  2730. <returns>The character that replaces periods in the ID attribute of an element.</returns>
  2731. </member>
  2732. <member name="P:System.Web.Mvc.HtmlHelper.RouteCollection">
  2733. <summary>Gets or sets the collection of routes for the application.</summary>
  2734. <returns>The collection of routes for the application.</returns>
  2735. </member>
  2736. <member name="P:System.Web.Mvc.HtmlHelper.UnobtrusiveJavaScriptEnabled">
  2737. <summary>Gets or sets unobtrusive JavaScript.</summary>
  2738. <returns>true if unobtrusive JavaScript is enabled; otherwise, false.</returns>
  2739. </member>
  2740. <member name="F:System.Web.Mvc.HtmlHelper.ValidationInputCssClassName">
  2741. <summary>The name of the CSS class that is used to style an input field when a validation error occurs.</summary>
  2742. </member>
  2743. <member name="F:System.Web.Mvc.HtmlHelper.ValidationInputValidCssClassName">
  2744. <summary>The name of the CSS class that is used to style an input field when the input is valid.</summary>
  2745. </member>
  2746. <member name="F:System.Web.Mvc.HtmlHelper.ValidationMessageCssClassName">
  2747. <summary>The name of the CSS class that is used to style the error message when a validation error occurs.</summary>
  2748. </member>
  2749. <member name="F:System.Web.Mvc.HtmlHelper.ValidationMessageValidCssClassName">
  2750. <summary>The name of the CSS class that is used to style the validation message when the input is valid.</summary>
  2751. </member>
  2752. <member name="F:System.Web.Mvc.HtmlHelper.ValidationSummaryCssClassName">
  2753. <summary>The name of the CSS class that is used to style validation summary error messages.</summary>
  2754. </member>
  2755. <member name="F:System.Web.Mvc.HtmlHelper.ValidationSummaryValidCssClassName">
  2756. <summary>The name of the CSS class that is used to style the validation summary when the input is valid.</summary>
  2757. </member>
  2758. <member name="P:System.Web.Mvc.HtmlHelper.ViewContext">
  2759. <summary>Gets or sets the context information about the view.</summary>
  2760. <returns>The context of the view.</returns>
  2761. </member>
  2762. <member name="P:System.Web.Mvc.HtmlHelper.ViewData">
  2763. <summary>Gets the current view data dictionary.</summary>
  2764. <returns>The view data dictionary.</returns>
  2765. </member>
  2766. <member name="P:System.Web.Mvc.HtmlHelper.ViewDataContainer">
  2767. <summary>Gets or sets the view data container.</summary>
  2768. <returns>The view data container.</returns>
  2769. </member>
  2770. <member name="T:System.Web.Mvc.HtmlHelper`1">
  2771. <summary>Represents support for rendering HTML controls in a strongly typed view.</summary>
  2772. <typeparam name="TModel">The type of the model.</typeparam>
  2773. </member>
  2774. <member name="M:System.Web.Mvc.HtmlHelper`1.#ctor(System.Web.Mvc.ViewContext,System.Web.Mvc.IViewDataContainer)">
  2775. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.HtmlHelper`1" /> class by using the specified view context and view data container.</summary>
  2776. <param name="viewContext">The view context.</param>
  2777. <param name="viewDataContainer">The view data container.</param>
  2778. </member>
  2779. <member name="M:System.Web.Mvc.HtmlHelper`1.#ctor(System.Web.Mvc.ViewContext,System.Web.Mvc.IViewDataContainer,System.Web.Routing.RouteCollection)">
  2780. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.HtmlHelper`1" /> class by using the specified view context, view data container, and route collection.</summary>
  2781. <param name="viewContext">The view context.</param>
  2782. <param name="viewDataContainer">The view data container.</param>
  2783. <param name="routeCollection">The route collection.</param>
  2784. </member>
  2785. <member name="P:System.Web.Mvc.HtmlHelper`1.ViewData">
  2786. <summary>Gets the strongly typed view data dictionary.</summary>
  2787. <returns>The strongly typed view data dictionary.</returns>
  2788. </member>
  2789. <member name="T:System.Web.Mvc.HttpAntiForgeryException">
  2790. <summary>Represents an HTTP anti-forgery exception.</summary>
  2791. </member>
  2792. <member name="M:System.Web.Mvc.HttpAntiForgeryException.#ctor">
  2793. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.HttpAntiForgeryException" /> class by using a system-supplied message that describes the error.</summary>
  2794. </member>
  2795. <member name="M:System.Web.Mvc.HttpAntiForgeryException.#ctor(System.String)">
  2796. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.HttpAntiForgeryException" /> class by using a specified message that describes the error.</summary>
  2797. <param name="message">The message that describes the exception. The caller of this constructor must make sure that this string has been localized for the current system culture.</param>
  2798. </member>
  2799. <member name="M:System.Web.Mvc.HttpAntiForgeryException.#ctor(System.String,System.Exception)">
  2800. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.HttpAntiForgeryException" /> class by using a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
  2801. <param name="message">The message that describes the exception. The caller of this constructor must make sure that this string has been localized for the current system culture. </param>
  2802. <param name="innerException">The exception that is the cause of the current exception. If the <paramref name="innerException" /> parameter is not null, the current exception is raised in a catch block that handles the inner exception. </param>
  2803. </member>
  2804. <member name="T:System.Web.Mvc.HttpDeleteAttribute">
  2805. <summary>Represents an attribute that is used to restrict an action method so that the method handles only HTTP DELETE requests.</summary>
  2806. </member>
  2807. <member name="M:System.Web.Mvc.HttpDeleteAttribute.#ctor">
  2808. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.HttpDeleteAttribute" /> class.</summary>
  2809. </member>
  2810. <member name="M:System.Web.Mvc.HttpDeleteAttribute.IsValidForRequest(System.Web.Mvc.ControllerContext,System.Reflection.MethodInfo)">
  2811. <summary>Determines whether a request is a valid HTTP DELETE request.</summary>
  2812. <returns>true if the request is valid; otherwise, false.</returns>
  2813. <param name="controllerContext">The context within which the controller operates. The context information includes the controller, HTTP content, request context, and route data.</param>
  2814. <param name="methodInfo">Encapsulates information about a method, such as its type, return type, and arguments.</param>
  2815. </member>
  2816. <member name="T:System.Web.Mvc.HttpFileCollectionValueProvider">
  2817. <summary>Represents a value provider to use with values that come from a collection of HTTP files.</summary>
  2818. </member>
  2819. <member name="M:System.Web.Mvc.HttpFileCollectionValueProvider.#ctor(System.Web.Mvc.ControllerContext)">
  2820. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.HttpFileCollectionValueProvider" /> class.</summary>
  2821. <param name="controllerContext">An object that encapsulates information about the current HTTP request.</param>
  2822. </member>
  2823. <member name="T:System.Web.Mvc.HttpFileCollectionValueProviderFactory">
  2824. <summary>Represents a class that is responsible for creating a new instance of an HTTP file collection value provider object.</summary>
  2825. </member>
  2826. <member name="M:System.Web.Mvc.HttpFileCollectionValueProviderFactory.#ctor">
  2827. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.HttpFileCollectionValueProviderFactory" /> class.</summary>
  2828. </member>
  2829. <member name="M:System.Web.Mvc.HttpFileCollectionValueProviderFactory.GetValueProvider(System.Web.Mvc.ControllerContext)">
  2830. <summary>Returns a value provider object for the specified controller context.</summary>
  2831. <returns>An HTTP file collection value provider.</returns>
  2832. <param name="controllerContext">An object that encapsulates information about the HTTP request.</param>
  2833. <exception cref="T:System.ArgumentNullException">The <paramref name="controllerContext" /> parameter is null.</exception>
  2834. </member>
  2835. <member name="T:System.Web.Mvc.HttpGetAttribute">
  2836. <summary>Represents an attribute that is used to restrict an action method so that the method handles only HTTP GET requests.</summary>
  2837. </member>
  2838. <member name="M:System.Web.Mvc.HttpGetAttribute.#ctor">
  2839. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.HttpGetAttribute" /> class.</summary>
  2840. </member>
  2841. <member name="M:System.Web.Mvc.HttpGetAttribute.IsValidForRequest(System.Web.Mvc.ControllerContext,System.Reflection.MethodInfo)">
  2842. <summary>Determines whether a request is a valid HTTP GET request.</summary>
  2843. <returns>true if the request is valid; otherwise, false.</returns>
  2844. <param name="controllerContext">The context within which the controller operates. The context information includes the controller, HTTP content, request context, and route data.</param>
  2845. <param name="methodInfo">Encapsulates information about a method, such as its type, return type, and arguments.</param>
  2846. </member>
  2847. <member name="T:System.Web.Mvc.HttpNotFoundResult">
  2848. <summary>Defines an object that is used to indicate that the requested resource was not found.</summary>
  2849. </member>
  2850. <member name="M:System.Web.Mvc.HttpNotFoundResult.#ctor">
  2851. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.HttpNotFoundResult" /> class.</summary>
  2852. </member>
  2853. <member name="M:System.Web.Mvc.HttpNotFoundResult.#ctor(System.String)">
  2854. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.HttpNotFoundResult" /> class using a status description.</summary>
  2855. <param name="statusDescription">The status description.</param>
  2856. </member>
  2857. <member name="T:System.Web.Mvc.HttpPostAttribute">
  2858. <summary>Represents an attribute that is used to restrict an action method so that the method handles only HTTP POST requests.</summary>
  2859. </member>
  2860. <member name="M:System.Web.Mvc.HttpPostAttribute.#ctor">
  2861. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.HttpPostAttribute" /> class.</summary>
  2862. </member>
  2863. <member name="M:System.Web.Mvc.HttpPostAttribute.IsValidForRequest(System.Web.Mvc.ControllerContext,System.Reflection.MethodInfo)">
  2864. <summary>Determines whether a request is a valid HTTP POST request.</summary>
  2865. <returns>true if the request is valid; otherwise, false.</returns>
  2866. <param name="controllerContext">The context within which the controller operates. The context information includes the controller, HTTP content, request context, and route data.</param>
  2867. <param name="methodInfo">Encapsulates information about a method, such as its type, return type, and arguments.</param>
  2868. </member>
  2869. <member name="T:System.Web.Mvc.HttpPostedFileBaseModelBinder">
  2870. <summary>Binds a model to a posted file.</summary>
  2871. </member>
  2872. <member name="M:System.Web.Mvc.HttpPostedFileBaseModelBinder.#ctor">
  2873. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.HttpPostedFileBaseModelBinder" /> class.</summary>
  2874. </member>
  2875. <member name="M:System.Web.Mvc.HttpPostedFileBaseModelBinder.BindModel(System.Web.Mvc.ControllerContext,System.Web.Mvc.ModelBindingContext)">
  2876. <summary>Binds the model.</summary>
  2877. <returns>The bound value.</returns>
  2878. <param name="controllerContext">The controller context.</param>
  2879. <param name="bindingContext">The binding context.</param>
  2880. <exception cref="T:System.ArgumentNullException">One or both parameters are null.</exception>
  2881. </member>
  2882. <member name="T:System.Web.Mvc.HttpPutAttribute">
  2883. <summary>Represents an attribute that is used to restrict an action method so that the method handles only HTTP PUT requests.</summary>
  2884. </member>
  2885. <member name="M:System.Web.Mvc.HttpPutAttribute.#ctor">
  2886. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.HttpPutAttribute" /> class.</summary>
  2887. </member>
  2888. <member name="M:System.Web.Mvc.HttpPutAttribute.IsValidForRequest(System.Web.Mvc.ControllerContext,System.Reflection.MethodInfo)">
  2889. <summary>Determines whether a request is a valid HTTP PUT request.</summary>
  2890. <returns>true if the request is valid; otherwise, false.</returns>
  2891. <param name="controllerContext">The context within which the controller operates. The context information includes the controller, HTTP content, request context, and route data.</param>
  2892. <param name="methodInfo">Encapsulates information about a method, such as its type, return type, and arguments.</param>
  2893. </member>
  2894. <member name="T:System.Web.Mvc.HttpRequestExtensions">
  2895. <summary>Extends the <see cref="T:System.Web.HttpRequestBase" /> class that contains the HTTP values that were sent by a client during a Web request.</summary>
  2896. </member>
  2897. <member name="M:System.Web.Mvc.HttpRequestExtensions.GetHttpMethodOverride(System.Web.HttpRequestBase)">
  2898. <summary>Retrieves the HTTP data-transfer method override that was used by the client.</summary>
  2899. <returns>The HTTP data-transfer method override that was used by the client.</returns>
  2900. <param name="request">An object that contains the HTTP values that were sent by a client during a Web request.</param>
  2901. <exception cref="T:System.ArgumentNullException">The <paramref name="request" /> parameter is null.</exception>
  2902. <exception cref="T:System.NotImplementedException">The HTTP data-transfer method override was not implemented.</exception>
  2903. </member>
  2904. <member name="T:System.Web.Mvc.HttpStatusCodeResult">
  2905. <summary>Provides a way to return an action result with a specific HTTP response status code and description.</summary>
  2906. </member>
  2907. <member name="M:System.Web.Mvc.HttpStatusCodeResult.#ctor(System.Int32)">
  2908. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.HttpStatusCodeResult" /> class using a status code.</summary>
  2909. <param name="statusCode">The status code.</param>
  2910. </member>
  2911. <member name="M:System.Web.Mvc.HttpStatusCodeResult.#ctor(System.Int32,System.String)">
  2912. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.HttpStatusCodeResult" /> class using a status code and status description.</summary>
  2913. <param name="statusCode">The status code.</param>
  2914. <param name="statusDescription">The status description.</param>
  2915. </member>
  2916. <member name="M:System.Web.Mvc.HttpStatusCodeResult.ExecuteResult(System.Web.Mvc.ControllerContext)">
  2917. <summary>Enables processing of the result of an action method by a custom type that inherits from the <see cref="T:System.Web.Mvc.ActionResult" /> class.</summary>
  2918. <param name="context">The context in which the result is executed. The context information includes the controller, HTTP content, request context, and route data.</param>
  2919. </member>
  2920. <member name="P:System.Web.Mvc.HttpStatusCodeResult.StatusCode">
  2921. <summary>Gets the HTTP status code.</summary>
  2922. <returns>The HTTP status code.</returns>
  2923. </member>
  2924. <member name="P:System.Web.Mvc.HttpStatusCodeResult.StatusDescription">
  2925. <summary>Gets the HTTP status description.</summary>
  2926. <returns>the HTTP status description.</returns>
  2927. </member>
  2928. <member name="T:System.Web.Mvc.HttpUnauthorizedResult">
  2929. <summary>Represents the result of an unauthorized HTTP request.</summary>
  2930. </member>
  2931. <member name="M:System.Web.Mvc.HttpUnauthorizedResult.#ctor">
  2932. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.HttpUnauthorizedResult" /> class.</summary>
  2933. </member>
  2934. <member name="M:System.Web.Mvc.HttpUnauthorizedResult.#ctor(System.String)">
  2935. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.HttpUnauthorizedResult" /> class using the status description.</summary>
  2936. <param name="statusDescription">The status description.</param>
  2937. </member>
  2938. <member name="T:System.Web.Mvc.HttpVerbs">
  2939. <summary>Enumerates the HTTP verbs.</summary>
  2940. </member>
  2941. <member name="F:System.Web.Mvc.HttpVerbs.Get">
  2942. <summary>Retrieves the information or entity that is identified by the URI of the request.</summary>
  2943. </member>
  2944. <member name="F:System.Web.Mvc.HttpVerbs.Post">
  2945. <summary>Posts a new entity as an addition to a URI.</summary>
  2946. </member>
  2947. <member name="F:System.Web.Mvc.HttpVerbs.Put">
  2948. <summary>Replaces an entity that is identified by a URI.</summary>
  2949. </member>
  2950. <member name="F:System.Web.Mvc.HttpVerbs.Delete">
  2951. <summary>Requests that a specified URI be deleted.</summary>
  2952. </member>
  2953. <member name="F:System.Web.Mvc.HttpVerbs.Head">
  2954. <summary>Retrieves the message headers for the information or entity that is identified by the URI of the request.</summary>
  2955. </member>
  2956. <member name="T:System.Web.Mvc.IActionFilter">
  2957. <summary>Defines the methods that are used in an action filter.</summary>
  2958. </member>
  2959. <member name="M:System.Web.Mvc.IActionFilter.OnActionExecuted(System.Web.Mvc.ActionExecutedContext)">
  2960. <summary>Called after the action method executes.</summary>
  2961. <param name="filterContext">The filter context.</param>
  2962. </member>
  2963. <member name="M:System.Web.Mvc.IActionFilter.OnActionExecuting(System.Web.Mvc.ActionExecutingContext)">
  2964. <summary>Called before an action method executes.</summary>
  2965. <param name="filterContext">The filter context.</param>
  2966. </member>
  2967. <member name="T:System.Web.Mvc.IActionInvoker">
  2968. <summary>Defines the contract for an action invoker, which is used to invoke an action in response to an HTTP request.</summary>
  2969. </member>
  2970. <member name="M:System.Web.Mvc.IActionInvoker.InvokeAction(System.Web.Mvc.ControllerContext,System.String)">
  2971. <summary>Invokes the specified action by using the specified controller context.</summary>
  2972. <returns>true if the action was found; otherwise, false.</returns>
  2973. <param name="controllerContext">The controller context.</param>
  2974. <param name="actionName">The name of the action.</param>
  2975. </member>
  2976. <member name="T:System.Web.Mvc.IAuthorizationFilter">
  2977. <summary>Defines the methods that are required for an authorization filter.</summary>
  2978. </member>
  2979. <member name="M:System.Web.Mvc.IAuthorizationFilter.OnAuthorization(System.Web.Mvc.AuthorizationContext)">
  2980. <summary>Called when authorization is required.</summary>
  2981. <param name="filterContext">The filter context.</param>
  2982. </member>
  2983. <member name="T:System.Web.Mvc.IClientValidatable">
  2984. <summary>Provides a way for the ASP.NET MVC validation framework to discover at run time whether a validator has support for client validation.</summary>
  2985. </member>
  2986. <member name="M:System.Web.Mvc.IClientValidatable.GetClientValidationRules(System.Web.Mvc.ModelMetadata,System.Web.Mvc.ControllerContext)">
  2987. <summary>When implemented in a class, returns client validation rules for that class.</summary>
  2988. <returns>The client validation rules for this validator.</returns>
  2989. <param name="metadata">The model metadata.</param>
  2990. <param name="context">The controller context.</param>
  2991. </member>
  2992. <member name="T:System.Web.Mvc.IController">
  2993. <summary>Defines the methods that are required for a controller.</summary>
  2994. </member>
  2995. <member name="M:System.Web.Mvc.IController.Execute(System.Web.Routing.RequestContext)">
  2996. <summary>Executes the specified request context.</summary>
  2997. <param name="requestContext">The request context.</param>
  2998. </member>
  2999. <member name="T:System.Web.Mvc.IControllerActivator">
  3000. <summary>Provides fine-grained control over how controllers are instantiated using dependency injection.</summary>
  3001. </member>
  3002. <member name="M:System.Web.Mvc.IControllerActivator.Create(System.Web.Routing.RequestContext,System.Type)">
  3003. <summary>When implemented in a class, creates a controller.</summary>
  3004. <returns>The created controller.</returns>
  3005. <param name="requestContext">The request context.</param>
  3006. <param name="controllerType">The controller type.</param>
  3007. </member>
  3008. <member name="T:System.Web.Mvc.IControllerFactory">
  3009. <summary>Defines the methods that are required for a controller factory.</summary>
  3010. </member>
  3011. <member name="M:System.Web.Mvc.IControllerFactory.CreateController(System.Web.Routing.RequestContext,System.String)">
  3012. <summary>Creates the specified controller by using the specified request context.</summary>
  3013. <returns>The controller.</returns>
  3014. <param name="requestContext">The request context.</param>
  3015. <param name="controllerName">The name of the controller.</param>
  3016. </member>
  3017. <member name="M:System.Web.Mvc.IControllerFactory.GetControllerSessionBehavior(System.Web.Routing.RequestContext,System.String)">
  3018. <summary>Gets the controller's session behavior.</summary>
  3019. <returns>The controller's session behavior.</returns>
  3020. <param name="requestContext">The request context.</param>
  3021. <param name="controllerName">The name of the controller whose session behavior you want to get.</param>
  3022. </member>
  3023. <member name="M:System.Web.Mvc.IControllerFactory.ReleaseController(System.Web.Mvc.IController)">
  3024. <summary>Releases the specified controller.</summary>
  3025. <param name="controller">The controller.</param>
  3026. </member>
  3027. <member name="T:System.Web.Mvc.IDependencyResolver">
  3028. <summary>Defines the methods that simplify service location and dependency resolution.</summary>
  3029. </member>
  3030. <member name="M:System.Web.Mvc.IDependencyResolver.GetService(System.Type)">
  3031. <summary>Resolves singly registered services that support arbitrary object creation.</summary>
  3032. <returns>The requested service or object.</returns>
  3033. <param name="serviceType">The type of the requested service or object.</param>
  3034. </member>
  3035. <member name="M:System.Web.Mvc.IDependencyResolver.GetServices(System.Type)">
  3036. <summary>Resolves multiply registered services.</summary>
  3037. <returns>The requested services.</returns>
  3038. <param name="serviceType">The type of the requested services.</param>
  3039. </member>
  3040. <member name="T:System.Web.Mvc.IExceptionFilter">
  3041. <summary>Defines the methods that are required for an exception filter.</summary>
  3042. </member>
  3043. <member name="M:System.Web.Mvc.IExceptionFilter.OnException(System.Web.Mvc.ExceptionContext)">
  3044. <summary>Called when an exception occurs.</summary>
  3045. <param name="filterContext">The filter context.</param>
  3046. </member>
  3047. <member name="T:System.Web.Mvc.IFilterProvider">
  3048. <summary>Provides an interface for finding filters.</summary>
  3049. </member>
  3050. <member name="M:System.Web.Mvc.IFilterProvider.GetFilters(System.Web.Mvc.ControllerContext,System.Web.Mvc.ActionDescriptor)">
  3051. <summary>Returns an enumerator that contains all the <see cref="T:System.Web.Mvc.IFilterProvider" /> instances in the service locator.</summary>
  3052. <returns>The enumerator that contains all the <see cref="T:System.Web.Mvc.IFilterProvider" /> instances in the service locator.</returns>
  3053. <param name="controllerContext">The controller context.</param>
  3054. <param name="actionDescriptor">The action descriptor.</param>
  3055. </member>
  3056. <member name="T:System.Web.Mvc.IMetadataAware">
  3057. <summary>Provides an interface for exposing attributes to the <see cref="T:System.Web.Mvc.AssociatedMetadataProvider" /> class.</summary>
  3058. </member>
  3059. <member name="M:System.Web.Mvc.IMetadataAware.OnMetadataCreated(System.Web.Mvc.ModelMetadata)">
  3060. <summary>When implemented in a class, provides metadata to the model metadata creation process.</summary>
  3061. <param name="metadata">The model metadata.</param>
  3062. </member>
  3063. <member name="T:System.Web.Mvc.IModelBinder">
  3064. <summary>Defines the methods that are required for a model binder.</summary>
  3065. </member>
  3066. <member name="M:System.Web.Mvc.IModelBinder.BindModel(System.Web.Mvc.ControllerContext,System.Web.Mvc.ModelBindingContext)">
  3067. <summary>Binds the model to a value by using the specified controller context and binding context.</summary>
  3068. <returns>The bound value.</returns>
  3069. <param name="controllerContext">The controller context.</param>
  3070. <param name="bindingContext">The binding context.</param>
  3071. </member>
  3072. <member name="T:System.Web.Mvc.IModelBinderProvider">
  3073. <summary>Defines methods that enable dynamic implementations of model binding for classes that implement the <see cref="T:System.Web.Mvc.IModelBinder" /> interface. </summary>
  3074. </member>
  3075. <member name="M:System.Web.Mvc.IModelBinderProvider.GetBinder(System.Type)">
  3076. <summary>Returns the model binder for the specified type.</summary>
  3077. <returns>The model binder for the specified type.</returns>
  3078. <param name="modelType">The type of the model.</param>
  3079. </member>
  3080. <member name="T:System.Web.Mvc.IMvcFilter">
  3081. <summary>Defines members that specify the order of filters and whether multiple filters are allowed.</summary>
  3082. </member>
  3083. <member name="P:System.Web.Mvc.IMvcFilter.AllowMultiple">
  3084. <summary>When implemented in a class, gets or sets a value that indicates whether multiple filters are allowed.</summary>
  3085. <returns>true if multiple filters are allowed; otherwise, false.</returns>
  3086. </member>
  3087. <member name="P:System.Web.Mvc.IMvcFilter.Order">
  3088. <summary>When implemented in a class, gets the filter order.</summary>
  3089. <returns>The filter order.</returns>
  3090. </member>
  3091. <member name="T:System.Web.Mvc.InputType">
  3092. <summary>Enumerates the types of input controls.</summary>
  3093. </member>
  3094. <member name="F:System.Web.Mvc.InputType.CheckBox">
  3095. <summary>A check box.</summary>
  3096. </member>
  3097. <member name="F:System.Web.Mvc.InputType.Hidden">
  3098. <summary>A hidden field.</summary>
  3099. </member>
  3100. <member name="F:System.Web.Mvc.InputType.Password">
  3101. <summary>A password box.</summary>
  3102. </member>
  3103. <member name="F:System.Web.Mvc.InputType.Radio">
  3104. <summary>A radio button.</summary>
  3105. </member>
  3106. <member name="F:System.Web.Mvc.InputType.Text">
  3107. <summary>A text box.</summary>
  3108. </member>
  3109. <member name="T:System.Web.Mvc.IResultFilter">
  3110. <summary>Defines the methods that are required for a result filter.</summary>
  3111. </member>
  3112. <member name="M:System.Web.Mvc.IResultFilter.OnResultExecuted(System.Web.Mvc.ResultExecutedContext)">
  3113. <summary>Called after an action result executes.</summary>
  3114. <param name="filterContext">The filter context.</param>
  3115. </member>
  3116. <member name="M:System.Web.Mvc.IResultFilter.OnResultExecuting(System.Web.Mvc.ResultExecutingContext)">
  3117. <summary>Called before an action result executes.</summary>
  3118. <param name="filterContext">The filter context.</param>
  3119. </member>
  3120. <member name="T:System.Web.Mvc.IRouteWithArea">
  3121. <summary>Associates a route with an area in an ASP.NET MVC application.</summary>
  3122. </member>
  3123. <member name="P:System.Web.Mvc.IRouteWithArea.Area">
  3124. <summary>Gets the name of the area to associate the route with.</summary>
  3125. <returns>The name of the area to associate the route with.</returns>
  3126. </member>
  3127. <member name="T:System.Web.Mvc.ITempDataProvider">
  3128. <summary>Defines the contract for temporary-data providers that store data that is viewed on the next request.</summary>
  3129. </member>
  3130. <member name="M:System.Web.Mvc.ITempDataProvider.LoadTempData(System.Web.Mvc.ControllerContext)">
  3131. <summary>Loads the temporary data.</summary>
  3132. <returns>The temporary data.</returns>
  3133. <param name="controllerContext">The controller context.</param>
  3134. </member>
  3135. <member name="M:System.Web.Mvc.ITempDataProvider.SaveTempData(System.Web.Mvc.ControllerContext,System.Collections.Generic.IDictionary{System.String,System.Object})">
  3136. <summary>Saves the temporary data.</summary>
  3137. <param name="controllerContext">The controller context.</param>
  3138. <param name="values">The values.</param>
  3139. </member>
  3140. <member name="T:System.Web.Mvc.IUnvalidatedValueProvider">
  3141. <summary>Represents an <see cref="T:System.Web.Mvc.IValueProvider" /> interface that can skip request validation.</summary>
  3142. </member>
  3143. <member name="M:System.Web.Mvc.IUnvalidatedValueProvider.GetValue(System.String,System.Boolean)">
  3144. <summary>Retrieves the value of the object that is associated with the specified key.</summary>
  3145. <returns>The value of the object for the specified key.</returns>
  3146. <param name="key">The key.</param>
  3147. <param name="skipValidation">true if validation should be skipped; otherwise, false.</param>
  3148. </member>
  3149. <member name="T:System.Web.Mvc.IValueProvider">
  3150. <summary>Defines the methods that are required for a value provider in ASP.NET MVC.</summary>
  3151. </member>
  3152. <member name="M:System.Web.Mvc.IValueProvider.ContainsPrefix(System.String)">
  3153. <summary>Determines whether the collection contains the specified prefix.</summary>
  3154. <returns>true if the collection contains the specified prefix; otherwise, false.</returns>
  3155. <param name="prefix">The prefix to search for.</param>
  3156. </member>
  3157. <member name="M:System.Web.Mvc.IValueProvider.GetValue(System.String)">
  3158. <summary>Retrieves a value object using the specified key.</summary>
  3159. <returns>The value object for the specified key.</returns>
  3160. <param name="key">The key of the value object to retrieve.</param>
  3161. </member>
  3162. <member name="T:System.Web.Mvc.IView">
  3163. <summary>Defines the methods that are required for a view.</summary>
  3164. </member>
  3165. <member name="M:System.Web.Mvc.IView.Render(System.Web.Mvc.ViewContext,System.IO.TextWriter)">
  3166. <summary>Renders the specified view context by using the specified the writer object.</summary>
  3167. <param name="viewContext">The view context.</param>
  3168. <param name="writer">The writer object.</param>
  3169. </member>
  3170. <member name="T:System.Web.Mvc.IViewDataContainer">
  3171. <summary>Defines the methods that are required for a view data dictionary.</summary>
  3172. </member>
  3173. <member name="P:System.Web.Mvc.IViewDataContainer.ViewData">
  3174. <summary>Gets or sets the view data dictionary.</summary>
  3175. <returns>The view data dictionary.</returns>
  3176. </member>
  3177. <member name="T:System.Web.Mvc.IViewEngine">
  3178. <summary>Defines the methods that are required for a view engine.</summary>
  3179. </member>
  3180. <member name="M:System.Web.Mvc.IViewEngine.FindPartialView(System.Web.Mvc.ControllerContext,System.String,System.Boolean)">
  3181. <summary>Finds the specified partial view by using the specified controller context.</summary>
  3182. <returns>The partial view.</returns>
  3183. <param name="controllerContext">The controller context.</param>
  3184. <param name="partialViewName">The name of the partial view.</param>
  3185. <param name="useCache">true to specify that the view engine returns the cached view, if a cached view exists; otherwise, false.</param>
  3186. </member>
  3187. <member name="M:System.Web.Mvc.IViewEngine.FindView(System.Web.Mvc.ControllerContext,System.String,System.String,System.Boolean)">
  3188. <summary>Finds the specified view by using the specified controller context.</summary>
  3189. <returns>The page view.</returns>
  3190. <param name="controllerContext">The controller context.</param>
  3191. <param name="viewName">The name of the view.</param>
  3192. <param name="masterName">The name of the master.</param>
  3193. <param name="useCache">true to specify that the view engine returns the cached view, if a cached view exists; otherwise, false.</param>
  3194. </member>
  3195. <member name="M:System.Web.Mvc.IViewEngine.ReleaseView(System.Web.Mvc.ControllerContext,System.Web.Mvc.IView)">
  3196. <summary>Releases the specified view by using the specified controller context.</summary>
  3197. <param name="controllerContext">The controller context.</param>
  3198. <param name="view">The view.</param>
  3199. </member>
  3200. <member name="T:System.Web.Mvc.IViewLocationCache">
  3201. <summary>Defines the methods that are required in order to cache view locations in memory.</summary>
  3202. </member>
  3203. <member name="M:System.Web.Mvc.IViewLocationCache.GetViewLocation(System.Web.HttpContextBase,System.String)">
  3204. <summary>Gets the view location by using the specified HTTP context and the cache key.</summary>
  3205. <returns>The view location.</returns>
  3206. <param name="httpContext">The HTTP context.</param>
  3207. <param name="key">The cache key.</param>
  3208. </member>
  3209. <member name="M:System.Web.Mvc.IViewLocationCache.InsertViewLocation(System.Web.HttpContextBase,System.String,System.String)">
  3210. <summary>Inserts the specified view location into the cache by using the specified HTTP context and the cache key.</summary>
  3211. <param name="httpContext">The HTTP context.</param>
  3212. <param name="key">The cache key.</param>
  3213. <param name="virtualPath">The virtual path.</param>
  3214. </member>
  3215. <member name="T:System.Web.Mvc.IViewPageActivator">
  3216. <summary>Provides fine-grained control over how view pages are instantiated using dependency injection.</summary>
  3217. </member>
  3218. <member name="M:System.Web.Mvc.IViewPageActivator.Create(System.Web.Mvc.ControllerContext,System.Type)">
  3219. <returns>The created view page.</returns>
  3220. <param name="controllerContext">The controller context.</param>
  3221. <param name="type">The type of the controller.</param>
  3222. </member>
  3223. <member name="T:System.Web.Mvc.JavaScriptResult">
  3224. <summary>Sends JavaScript content to the response.</summary>
  3225. </member>
  3226. <member name="M:System.Web.Mvc.JavaScriptResult.#ctor">
  3227. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.JavaScriptResult" /> class.</summary>
  3228. </member>
  3229. <member name="M:System.Web.Mvc.JavaScriptResult.ExecuteResult(System.Web.Mvc.ControllerContext)">
  3230. <summary>Enables processing of the result of an action method by a custom type that inherits from the <see cref="T:System.Web.Mvc.ActionResult" /> class.</summary>
  3231. <param name="context">The context within which the result is executed.</param>
  3232. <exception cref="T:System.ArgumentNullException">The <paramref name="context" /> parameter is null.</exception>
  3233. </member>
  3234. <member name="P:System.Web.Mvc.JavaScriptResult.Script">
  3235. <summary>Gets or sets the script.</summary>
  3236. <returns>The script.</returns>
  3237. </member>
  3238. <member name="T:System.Web.Mvc.JsonRequestBehavior">
  3239. <summary>Specifies whether HTTP GET requests from the client are allowed.</summary>
  3240. </member>
  3241. <member name="F:System.Web.Mvc.JsonRequestBehavior.AllowGet">
  3242. <summary>HTTP GET requests from the client are allowed.</summary>
  3243. </member>
  3244. <member name="F:System.Web.Mvc.JsonRequestBehavior.DenyGet">
  3245. <summary>HTTP GET requests from the client are not allowed.</summary>
  3246. </member>
  3247. <member name="T:System.Web.Mvc.JsonResult">
  3248. <summary>Represents a class that is used to send JSON-formatted content to the response.</summary>
  3249. </member>
  3250. <member name="M:System.Web.Mvc.JsonResult.#ctor">
  3251. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.JsonResult" /> class.</summary>
  3252. </member>
  3253. <member name="P:System.Web.Mvc.JsonResult.ContentEncoding">
  3254. <summary>Gets or sets the content encoding.</summary>
  3255. <returns>The content encoding.</returns>
  3256. </member>
  3257. <member name="P:System.Web.Mvc.JsonResult.ContentType">
  3258. <summary>Gets or sets the type of the content.</summary>
  3259. <returns>The type of the content.</returns>
  3260. </member>
  3261. <member name="P:System.Web.Mvc.JsonResult.Data">
  3262. <summary>Gets or sets the data.</summary>
  3263. <returns>The data.</returns>
  3264. </member>
  3265. <member name="M:System.Web.Mvc.JsonResult.ExecuteResult(System.Web.Mvc.ControllerContext)">
  3266. <summary>Enables processing of the result of an action method by a custom type that inherits from the <see cref="T:System.Web.Mvc.ActionResult" /> class.</summary>
  3267. <param name="context">The context within which the result is executed.</param>
  3268. <exception cref="T:System.ArgumentNullException">The <paramref name="context" /> parameter is null.</exception>
  3269. </member>
  3270. <member name="P:System.Web.Mvc.JsonResult.JsonRequestBehavior">
  3271. <summary>Gets or sets a value that indicates whether HTTP GET requests from the client are allowed.</summary>
  3272. <returns>A value that indicates whether HTTP GET requests from the client are allowed.</returns>
  3273. </member>
  3274. <member name="T:System.Web.Mvc.JsonValueProviderFactory">
  3275. <summary>Enables action methods to send and receive JSON-formatted text and to model-bind the JSON text to parameters of action methods.</summary>
  3276. </member>
  3277. <member name="M:System.Web.Mvc.JsonValueProviderFactory.#ctor">
  3278. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.JsonValueProviderFactory" /> class.</summary>
  3279. </member>
  3280. <member name="M:System.Web.Mvc.JsonValueProviderFactory.GetValueProvider(System.Web.Mvc.ControllerContext)">
  3281. <summary>Returns a JSON value-provider object for the specified controller context.</summary>
  3282. <returns>A JSON value-provider object for the specified controller context.</returns>
  3283. <param name="controllerContext">The controller context.</param>
  3284. </member>
  3285. <member name="T:System.Web.Mvc.LinqBinaryModelBinder">
  3286. <summary>Maps a browser request to a LINQ <see cref="T:System.Data.Linq.Binary" /> object.</summary>
  3287. </member>
  3288. <member name="M:System.Web.Mvc.LinqBinaryModelBinder.#ctor">
  3289. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.LinqBinaryModelBinder" /> class.</summary>
  3290. </member>
  3291. <member name="M:System.Web.Mvc.LinqBinaryModelBinder.BindModel(System.Web.Mvc.ControllerContext,System.Web.Mvc.ModelBindingContext)">
  3292. <summary>Binds the model by using the specified controller context and binding context.</summary>
  3293. <returns>The bound data object. If the model cannot be bound, this method returns null.</returns>
  3294. <param name="controllerContext">The context within which the controller operates. The context information includes the controller, HTTP content, request context, and route data.</param>
  3295. <param name="bindingContext">The context within which the model is bound. The context includes information such as the model object, model name, model type, property filter, and value provider.</param>
  3296. </member>
  3297. <member name="T:System.Web.Mvc.ModelBinderAttribute">
  3298. <summary>Represents an attribute that is used to associate a model type to a model-builder type.</summary>
  3299. </member>
  3300. <member name="M:System.Web.Mvc.ModelBinderAttribute.#ctor(System.Type)">
  3301. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ModelBinderAttribute" /> class.</summary>
  3302. <param name="binderType">The type of the binder.</param>
  3303. <exception cref="T:System.ArgumentNullException">The <paramref name="binderType" /> parameter is null.</exception>
  3304. </member>
  3305. <member name="P:System.Web.Mvc.ModelBinderAttribute.BinderType">
  3306. <summary>Gets or sets the type of the binder.</summary>
  3307. <returns>The type of the binder.</returns>
  3308. </member>
  3309. <member name="M:System.Web.Mvc.ModelBinderAttribute.GetBinder">
  3310. <summary>Retrieves an instance of the model binder.</summary>
  3311. <returns>A reference to an object that implements the <see cref="T:System.Web.Mvc.IModelBinder" /> interface.</returns>
  3312. <exception cref="T:System.InvalidOperationException">An error occurred while an instance of the model binder was being created.</exception>
  3313. </member>
  3314. <member name="T:System.Web.Mvc.ModelBinderDictionary">
  3315. <summary>Represents a class that contains all model binders for the application, listed by binder type.</summary>
  3316. </member>
  3317. <member name="M:System.Web.Mvc.ModelBinderDictionary.#ctor">
  3318. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ModelBinderDictionary" /> class.</summary>
  3319. </member>
  3320. <member name="M:System.Web.Mvc.ModelBinderDictionary.Add(System.Collections.Generic.KeyValuePair{System.Type,System.Web.Mvc.IModelBinder})">
  3321. <summary>Adds the specified item to the model binder dictionary.</summary>
  3322. <param name="item">The object to add to the <see cref="T:System.Collections.Generic.ICollection`1" /> instance.</param>
  3323. <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1" /> object is read-only.</exception>
  3324. </member>
  3325. <member name="M:System.Web.Mvc.ModelBinderDictionary.Add(System.Type,System.Web.Mvc.IModelBinder)">
  3326. <summary>Adds the specified item to the model binder dictionary using the specified key.</summary>
  3327. <param name="key">The key of the element to add.</param>
  3328. <param name="value">The value of the element to add.</param>
  3329. <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.IDictionary`2" /> object is read-only.</exception>
  3330. <exception cref="T:System.ArgumentNullException">
  3331. <paramref name="key" /> is null.</exception>
  3332. <exception cref="T:System.ArgumentException">An element that has the same key already exists in the <see cref="T:System.Collections.Generic.IDictionary`2" /> object.</exception>
  3333. </member>
  3334. <member name="M:System.Web.Mvc.ModelBinderDictionary.Clear">
  3335. <summary>Removes all items from the model binder dictionary.</summary>
  3336. <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1" /> object is read-only.</exception>
  3337. </member>
  3338. <member name="M:System.Web.Mvc.ModelBinderDictionary.Contains(System.Collections.Generic.KeyValuePair{System.Type,System.Web.Mvc.IModelBinder})">
  3339. <summary>Determines whether the model binder dictionary contains a specified value.</summary>
  3340. <returns>true if <paramref name="item" /> is found in the model binder dictionary; otherwise, false.</returns>
  3341. <param name="item">The object to locate in the <see cref="T:System.Collections.Generic.ICollection`1" /> object.</param>
  3342. </member>
  3343. <member name="M:System.Web.Mvc.ModelBinderDictionary.ContainsKey(System.Type)">
  3344. <summary>Determines whether the model binder dictionary contains an element that has the specified key.</summary>
  3345. <returns>true if the model binder dictionary contains an element that has the specified key; otherwise, false.</returns>
  3346. <param name="key">The key to locate in the <see cref="T:System.Collections.Generic.IDictionary`2" /> object.</param>
  3347. <exception cref="T:System.ArgumentNullException">
  3348. <paramref name="key" /> is null.</exception>
  3349. </member>
  3350. <member name="M:System.Web.Mvc.ModelBinderDictionary.CopyTo(System.Collections.Generic.KeyValuePair{System.Type,System.Web.Mvc.IModelBinder}[],System.Int32)">
  3351. <summary>Copies the elements of the model binder dictionary to an array, starting at a specified index.</summary>
  3352. <param name="array">The one-dimensional array that is the destination of the elements copied from <see cref="T:System.Collections.Generic.ICollection`1" />. The array must have zero-based indexing.</param>
  3353. <param name="arrayIndex">The zero-based index in <paramref name="array" /> at which copying starts.</param>
  3354. <exception cref="T:System.ArgumentNullException">
  3355. <paramref name="array" /> is null.</exception>
  3356. <exception cref="T:System.ArgumentOutOfRangeException">
  3357. <paramref name="arrayIndex" /> is less than 0.</exception>
  3358. <exception cref="T:System.ArgumentException">
  3359. <paramref name="array" /> is multidimensional.-or- <paramref name="arrayIndex" /> is equal to or greater than the length of <paramref name="array" />.-or- The number of elements in the source <see cref="T:System.Collections.Generic.ICollection`1" /> object is greater than the available space from <paramref name="arrayIndex" /> to the end of the destination array. -or- Type <paramref name="T" /> cannot be cast automatically to the type of the destination array.</exception>
  3360. </member>
  3361. <member name="P:System.Web.Mvc.ModelBinderDictionary.Count">
  3362. <summary>Gets the number of elements in the model binder dictionary.</summary>
  3363. <returns>The number of elements in the model binder dictionary.</returns>
  3364. </member>
  3365. <member name="P:System.Web.Mvc.ModelBinderDictionary.DefaultBinder">
  3366. <summary>Gets or sets the default model binder.</summary>
  3367. <returns>The default model binder.</returns>
  3368. </member>
  3369. <member name="M:System.Web.Mvc.ModelBinderDictionary.GetBinder(System.Type)">
  3370. <summary>Retrieves the model binder for the specified type.</summary>
  3371. <returns>The model binder.</returns>
  3372. <param name="modelType">The type of the model to retrieve.</param>
  3373. <exception cref="T:System.ArgumentNullException">The <paramref name="modelType" /> parameter is null.</exception>
  3374. </member>
  3375. <member name="M:System.Web.Mvc.ModelBinderDictionary.GetBinder(System.Type,System.Boolean)">
  3376. <summary>Retrieves the model binder for the specified type or retrieves the default model binder.</summary>
  3377. <returns>The model binder.</returns>
  3378. <param name="modelType">The type of the model to retrieve.</param>
  3379. <param name="fallbackToDefault">true to retrieve the default model binder.</param>
  3380. <exception cref="T:System.ArgumentNullException">The <paramref name="modelType" /> parameter is null.</exception>
  3381. </member>
  3382. <member name="M:System.Web.Mvc.ModelBinderDictionary.GetEnumerator">
  3383. <summary>Returns an enumerator that can be used to iterate through the collection.</summary>
  3384. <returns>An enumerator that can be used to iterate through the collection.</returns>
  3385. </member>
  3386. <member name="P:System.Web.Mvc.ModelBinderDictionary.IsReadOnly">
  3387. <summary>Gets a value that indicates whether the model binder dictionary is read-only.</summary>
  3388. <returns>true if the model binder dictionary is read-only; otherwise, false.</returns>
  3389. </member>
  3390. <member name="P:System.Web.Mvc.ModelBinderDictionary.Item(System.Type)">
  3391. <summary>Gets or sets the specified key in an object that implements the <see cref="T:System.Web.Mvc.IModelBinder" /> interface.</summary>
  3392. <returns>The key for the specified item.</returns>
  3393. <param name="key">The item key.</param>
  3394. </member>
  3395. <member name="P:System.Web.Mvc.ModelBinderDictionary.Keys">
  3396. <summary>Gets a collection that contains the keys in the model binder dictionary.</summary>
  3397. <returns>A collection that contains the keys in the model binder dictionary.</returns>
  3398. </member>
  3399. <member name="M:System.Web.Mvc.ModelBinderDictionary.Remove(System.Collections.Generic.KeyValuePair{System.Type,System.Web.Mvc.IModelBinder})">
  3400. <summary>Removes the first occurrence of the specified element from the model binder dictionary.</summary>
  3401. <returns>true if <paramref name="item" /> was successfully removed from the model binder dictionary; otherwise, false. This method also returns false if <paramref name="item" /> is not found in the model binder dictionary.</returns>
  3402. <param name="item">The object to remove from the <see cref="T:System.Collections.Generic.ICollection`1" /> object.</param>
  3403. <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1" /> object is read-only.</exception>
  3404. </member>
  3405. <member name="M:System.Web.Mvc.ModelBinderDictionary.Remove(System.Type)">
  3406. <summary>Removes the element that has the specified key from the model binder dictionary.</summary>
  3407. <returns>true if the element is successfully removed; otherwise, false. This method also returns false if <paramref name="key" /> was not found in the model binder dictionary.</returns>
  3408. <param name="key">The key of the element to remove.</param>
  3409. <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.IDictionary`2" /> object is read-only.</exception>
  3410. <exception cref="T:System.ArgumentNullException">
  3411. <paramref name="key" /> is null.</exception>
  3412. </member>
  3413. <member name="M:System.Web.Mvc.ModelBinderDictionary.System#Collections#IEnumerable#GetEnumerator">
  3414. <summary>Returns an enumerator that can be used to iterate through a collection.</summary>
  3415. <returns>An enumerator that can be used to iterate through the collection.</returns>
  3416. </member>
  3417. <member name="M:System.Web.Mvc.ModelBinderDictionary.TryGetValue(System.Type,System.Web.Mvc.IModelBinder@)">
  3418. <summary>Gets the value that is associated with the specified key.</summary>
  3419. <returns>true if the object that implements <see cref="T:System.Collections.Generic.IDictionary`2" /> contains an element that has the specified key; otherwise, false.</returns>
  3420. <param name="key">The key of the value to get.</param>
  3421. <param name="value">When this method returns, the value associated with the specified key, if the key is found; otherwise, the default value for the type of the <paramref name="value" /> parameter. This parameter is passed uninitialized.</param>
  3422. <exception cref="T:System.ArgumentNullException">
  3423. <paramref name="key" /> is null.</exception>
  3424. </member>
  3425. <member name="P:System.Web.Mvc.ModelBinderDictionary.Values">
  3426. <summary>Gets a collection that contains the values in the model binder dictionary.</summary>
  3427. <returns>A collection that contains the values in the model binder dictionary.</returns>
  3428. </member>
  3429. <member name="T:System.Web.Mvc.ModelBinderProviderCollection">
  3430. <summary>Provides a container for model binder providers.</summary>
  3431. </member>
  3432. <member name="M:System.Web.Mvc.ModelBinderProviderCollection.#ctor">
  3433. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ModelBinderProviderCollection" /> class.</summary>
  3434. </member>
  3435. <member name="M:System.Web.Mvc.ModelBinderProviderCollection.#ctor(System.Collections.Generic.IList{System.Web.Mvc.IModelBinderProvider})">
  3436. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ModelBinderProviderCollection" /> class using a list of model binder providers.</summary>
  3437. <param name="list">A list of model binder providers.</param>
  3438. </member>
  3439. <member name="M:System.Web.Mvc.ModelBinderProviderCollection.GetBinder(System.Type)">
  3440. <summary>Returns a model binder of the specified type.</summary>
  3441. <returns>A model binder of the specified type.</returns>
  3442. <param name="modelType">The type of the model binder.</param>
  3443. </member>
  3444. <member name="M:System.Web.Mvc.ModelBinderProviderCollection.InsertItem(System.Int32,System.Web.Mvc.IModelBinderProvider)">
  3445. <summary>Inserts a model binder provider into the <see cref="T:System.Web.Mvc.ModelBinderProviderCollection" /> at the specified index.</summary>
  3446. <param name="index">The index.</param>
  3447. <param name="item">The model binder provider.</param>
  3448. </member>
  3449. <member name="M:System.Web.Mvc.ModelBinderProviderCollection.SetItem(System.Int32,System.Web.Mvc.IModelBinderProvider)">
  3450. <summary>Replaces the model binder provider element at the specified index.</summary>
  3451. <param name="index">The index.</param>
  3452. <param name="item">The model binder provider.</param>
  3453. </member>
  3454. <member name="T:System.Web.Mvc.ModelBinderProviders">
  3455. <summary>Provides a container for model binder providers.</summary>
  3456. </member>
  3457. <member name="P:System.Web.Mvc.ModelBinderProviders.BinderProviders">
  3458. <summary>Provides a registration point for model binder providers for applications that do not use dependency injection.</summary>
  3459. <returns>The model binder provider collection.</returns>
  3460. </member>
  3461. <member name="T:System.Web.Mvc.ModelBinders">
  3462. <summary>Provides global access to the model binders for the application.</summary>
  3463. </member>
  3464. <member name="P:System.Web.Mvc.ModelBinders.Binders">
  3465. <summary>Gets the model binders for the application.</summary>
  3466. <returns>The model binders for the application.</returns>
  3467. </member>
  3468. <member name="T:System.Web.Mvc.ModelBindingContext">
  3469. <summary>Provides the context in which a model binder functions.</summary>
  3470. </member>
  3471. <member name="M:System.Web.Mvc.ModelBindingContext.#ctor">
  3472. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ModelBindingContext" /> class.</summary>
  3473. </member>
  3474. <member name="M:System.Web.Mvc.ModelBindingContext.#ctor(System.Web.Mvc.ModelBindingContext)">
  3475. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ModelBindingContext" /> class using the binding context.</summary>
  3476. <param name="bindingContext">The binding context.</param>
  3477. </member>
  3478. <member name="P:System.Web.Mvc.ModelBindingContext.FallbackToEmptyPrefix">
  3479. <summary>Gets or sets a value that indicates whether the binder should use an empty prefix.</summary>
  3480. <returns>true if the binder should use an empty prefix; otherwise, false.</returns>
  3481. </member>
  3482. <member name="P:System.Web.Mvc.ModelBindingContext.Model">
  3483. <summary>Gets or sets the model.</summary>
  3484. <returns>The model.</returns>
  3485. </member>
  3486. <member name="P:System.Web.Mvc.ModelBindingContext.ModelMetadata">
  3487. <summary>Gets or sets the model metadata.</summary>
  3488. <returns>The model metadata.</returns>
  3489. </member>
  3490. <member name="P:System.Web.Mvc.ModelBindingContext.ModelName">
  3491. <summary>Gets or sets the name of the model.</summary>
  3492. <returns>The name of the model.</returns>
  3493. </member>
  3494. <member name="P:System.Web.Mvc.ModelBindingContext.ModelState">
  3495. <summary>Gets or sets the state of the model.</summary>
  3496. <returns>The state of the model.</returns>
  3497. </member>
  3498. <member name="P:System.Web.Mvc.ModelBindingContext.ModelType">
  3499. <summary>Gets or sets the type of the model.</summary>
  3500. <returns>The type of the model.</returns>
  3501. </member>
  3502. <member name="P:System.Web.Mvc.ModelBindingContext.PropertyFilter">
  3503. <summary>Gets or sets the property filter.</summary>
  3504. <returns>The property filter.</returns>
  3505. </member>
  3506. <member name="P:System.Web.Mvc.ModelBindingContext.PropertyMetadata">
  3507. <summary>Gets the property metadata.</summary>
  3508. <returns>The property metadata.</returns>
  3509. </member>
  3510. <member name="P:System.Web.Mvc.ModelBindingContext.ValueProvider">
  3511. <summary>Gets or sets the value provider.</summary>
  3512. <returns>The value provider.</returns>
  3513. </member>
  3514. <member name="T:System.Web.Mvc.ModelClientValidationEqualToRule">
  3515. <summary>Provides a container for an equality validation rule that is sent to the browser.</summary>
  3516. </member>
  3517. <member name="M:System.Web.Mvc.ModelClientValidationEqualToRule.#ctor(System.String,System.Object)">
  3518. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ModelClientValidationEqualToRule" /> class.</summary>
  3519. <param name="errorMessage">The error message.</param>
  3520. <param name="other">The model value used for equality comparison.</param>
  3521. </member>
  3522. <member name="T:System.Web.Mvc.ModelClientValidationRangeRule">
  3523. <summary>Provides a container for a range-validation rule that is sent to the browser.</summary>
  3524. </member>
  3525. <member name="M:System.Web.Mvc.ModelClientValidationRangeRule.#ctor(System.String,System.Object,System.Object)">
  3526. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ModelClientValidationRangeRule" /> class.</summary>
  3527. <param name="errorMessage">The error message.</param>
  3528. <param name="minValue">The minimum value.</param>
  3529. <param name="maxValue">The maximum value.</param>
  3530. </member>
  3531. <member name="T:System.Web.Mvc.ModelClientValidationRegexRule">
  3532. <summary>Provides a container for a regular-expression client validation rule that is sent to the browser.</summary>
  3533. </member>
  3534. <member name="M:System.Web.Mvc.ModelClientValidationRegexRule.#ctor(System.String,System.String)">
  3535. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ModelClientValidationRegexRule" /> class.</summary>
  3536. <param name="errorMessage">The error message to display when the regular expression validation fails.</param>
  3537. <param name="pattern">The regular expression.</param>
  3538. </member>
  3539. <member name="T:System.Web.Mvc.ModelClientValidationRemoteRule">
  3540. <summary>Provides a container for a remote validation rule that is sent to the browser.</summary>
  3541. </member>
  3542. <member name="M:System.Web.Mvc.ModelClientValidationRemoteRule.#ctor(System.String,System.String,System.String,System.String)">
  3543. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ModelClientValidationRemoteRule" /> class.</summary>
  3544. <param name="errorMessage">The error message.</param>
  3545. <param name="url">The URL for the validation parameters.</param>
  3546. <param name="httpMethod">The HTTP method for the validation parameters.</param>
  3547. <param name="fields">The validation parameter fields.</param>
  3548. </member>
  3549. <member name="T:System.Web.Mvc.ModelClientValidationRequiredRule">
  3550. <summary>Provides a container for client validation for required field.</summary>
  3551. </member>
  3552. <member name="M:System.Web.Mvc.ModelClientValidationRequiredRule.#ctor(System.String)">
  3553. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ModelClientValidationRule" /> class.</summary>
  3554. <param name="errorMessage">The error message to display when a value for the required field is not provided.</param>
  3555. </member>
  3556. <member name="T:System.Web.Mvc.ModelClientValidationRule">
  3557. <summary>Provides a base class container for a client validation rule that is sent to the browser.</summary>
  3558. </member>
  3559. <member name="M:System.Web.Mvc.ModelClientValidationRule.#ctor">
  3560. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ModelClientValidationRule" /> class.</summary>
  3561. </member>
  3562. <member name="P:System.Web.Mvc.ModelClientValidationRule.ErrorMessage">
  3563. <summary>Gets or sets the error message for the client validation rule.</summary>
  3564. <returns>The error message for the client validation rule.</returns>
  3565. </member>
  3566. <member name="P:System.Web.Mvc.ModelClientValidationRule.ValidationParameters">
  3567. <summary>Gets the list of validation parameters.</summary>
  3568. <returns>A list of validation parameters.</returns>
  3569. </member>
  3570. <member name="P:System.Web.Mvc.ModelClientValidationRule.ValidationType">
  3571. <summary>Gets or sets the validation type.</summary>
  3572. <returns>The validation type.</returns>
  3573. </member>
  3574. <member name="T:System.Web.Mvc.ModelClientValidationStringLengthRule">
  3575. <summary>Provides a container for a string-length validation rule that is sent to the browser.</summary>
  3576. </member>
  3577. <member name="M:System.Web.Mvc.ModelClientValidationStringLengthRule.#ctor(System.String,System.Int32,System.Int32)">
  3578. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ModelClientValidationStringLengthRule" /> class.</summary>
  3579. <param name="errorMessage">The validation error message.</param>
  3580. <param name="minimumLength">The minimum length of the string.</param>
  3581. <param name="maximumLength">The maximum length of the string.</param>
  3582. </member>
  3583. <member name="T:System.Web.Mvc.ModelError">
  3584. <summary>Represents an error that occurs during model binding.</summary>
  3585. </member>
  3586. <member name="M:System.Web.Mvc.ModelError.#ctor(System.Exception)">
  3587. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ModelError" /> class by using the specified exception.</summary>
  3588. <param name="exception">The exception.</param>
  3589. <exception cref="T:System.ArgumentNullException">The <paramref name="exception" /> parameter is null.</exception>
  3590. </member>
  3591. <member name="M:System.Web.Mvc.ModelError.#ctor(System.Exception,System.String)">
  3592. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ModelError" /> class by using the specified exception and error message.</summary>
  3593. <param name="exception">The exception.</param>
  3594. <param name="errorMessage">The error message.</param>
  3595. <exception cref="T:System.ArgumentNullException">The <paramref name="exception" /> parameter is null.</exception>
  3596. </member>
  3597. <member name="M:System.Web.Mvc.ModelError.#ctor(System.String)">
  3598. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ModelError" /> class by using the specified error message.</summary>
  3599. <param name="errorMessage">The error message.</param>
  3600. </member>
  3601. <member name="P:System.Web.Mvc.ModelError.ErrorMessage">
  3602. <summary>Gets or sets the error message.</summary>
  3603. <returns>The error message.</returns>
  3604. </member>
  3605. <member name="P:System.Web.Mvc.ModelError.Exception">
  3606. <summary>Gets or sets the exception object.</summary>
  3607. <returns>The exception object.</returns>
  3608. </member>
  3609. <member name="T:System.Web.Mvc.ModelErrorCollection">
  3610. <summary>A collection of <see cref="T:System.Web.Mvc.ModelError" /> instances.</summary>
  3611. </member>
  3612. <member name="M:System.Web.Mvc.ModelErrorCollection.#ctor">
  3613. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ModelErrorCollection" /> class.</summary>
  3614. </member>
  3615. <member name="M:System.Web.Mvc.ModelErrorCollection.Add(System.Exception)">
  3616. <summary>Adds the specified <see cref="T:System.Exception" /> object to the model-error collection.</summary>
  3617. <param name="exception">The exception.</param>
  3618. </member>
  3619. <member name="M:System.Web.Mvc.ModelErrorCollection.Add(System.String)">
  3620. <summary>Adds the specified error message to the model-error collection.</summary>
  3621. <param name="errorMessage">The error message.</param>
  3622. </member>
  3623. <member name="T:System.Web.Mvc.ModelMetadata">
  3624. <summary>Provides a container for common metadata, for the <see cref="T:System.Web.Mvc.ModelMetadataProvider" /> class, and for the <see cref="T:System.Web.Mvc.ModelValidator" /> class for a data model.</summary>
  3625. </member>
  3626. <member name="M:System.Web.Mvc.ModelMetadata.#ctor(System.Web.Mvc.ModelMetadataProvider,System.Type,System.Func`1,System.Void,System.Object)">
  3627. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ModelMetadata" /> class.</summary>
  3628. <param name="provider">The provider.</param>
  3629. <param name="containerType">The type of the container.</param>
  3630. <param name="modelAccessor">The model accessor.</param>
  3631. <param name="modelType">The type of the model.</param>
  3632. <param name="propertyName">The name of the model.</param>
  3633. </member>
  3634. <member name="P:System.Web.Mvc.ModelMetadata.AdditionalValues">
  3635. <summary>Gets a dictionary that contains additional metadata about the model.</summary>
  3636. <returns>A dictionary that contains additional metadata about the model.</returns>
  3637. </member>
  3638. <member name="P:System.Web.Mvc.ModelMetadata.ContainerType">
  3639. <summary>Gets or sets the type of the container for the model.</summary>
  3640. <returns>The type of the container for the model.</returns>
  3641. </member>
  3642. <member name="P:System.Web.Mvc.ModelMetadata.ConvertEmptyStringToNull">
  3643. <summary>Gets or sets a value that indicates whether empty strings that are posted back in forms should be converted to null.</summary>
  3644. <returns>true if empty strings that are posted back in forms should be converted to null; otherwise, false. The default value is true.</returns>
  3645. </member>
  3646. <member name="P:System.Web.Mvc.ModelMetadata.DataTypeName">
  3647. <summary>Gets or sets meta information about the data type. </summary>
  3648. <returns>Meta information about the data type. </returns>
  3649. </member>
  3650. <member name="F:System.Web.Mvc.ModelMetadata.DefaultOrder"></member>
  3651. <member name="P:System.Web.Mvc.ModelMetadata.Description">
  3652. <summary>Gets or sets the description of the model.</summary>
  3653. <returns>The description of the model. The default value is null.</returns>
  3654. </member>
  3655. <member name="P:System.Web.Mvc.ModelMetadata.DisplayFormatString">
  3656. <summary>Gets or sets the display format string for the model.</summary>
  3657. <returns>The display format string for the model.</returns>
  3658. </member>
  3659. <member name="P:System.Web.Mvc.ModelMetadata.DisplayName">
  3660. <summary>Gets or sets the display name of the model.</summary>
  3661. <returns>The display name of the model.</returns>
  3662. </member>
  3663. <member name="P:System.Web.Mvc.ModelMetadata.EditFormatString">
  3664. <summary>Gets or sets the edit format string of the model.</summary>
  3665. <returns>The edit format string of the model.</returns>
  3666. </member>
  3667. <member name="M:System.Web.Mvc.ModelMetadata.FromLambdaExpression``2(System.Linq.Expressions.Expression{System.Func`2},System.Boolean)">
  3668. <summary>Gets the metadata from the <see cref="T:System.Linq.Expressions.Expression" /> parameter for the model.</summary>
  3669. <returns>Returns <see cref="T:System.Web.Mvc.ModelMetadata" />.</returns>
  3670. <param name="expression">An expression that identifies the model.</param>
  3671. <param name="viewData">The view data dictionary.</param>
  3672. <typeparam name="TParameter">The type of the parameter.</typeparam>
  3673. <typeparam name="TValue">The type of the value.</typeparam>
  3674. </member>
  3675. <member name="M:System.Web.Mvc.ModelMetadata.FromStringExpression(System.String,System.Web.Mvc.ViewDataDictionary)">
  3676. <summary>Gets the metadata from the expression parameter for the model.</summary>
  3677. <returns>The metadata for the model.</returns>
  3678. <param name="expression">An expression that identifies the model.</param>
  3679. <param name="viewData">The view data dictionary.</param>
  3680. </member>
  3681. <member name="M:System.Web.Mvc.ModelMetadata.GetDisplayName">
  3682. <summary>Gets the display name for the model.</summary>
  3683. <returns>The display name for the model.</returns>
  3684. </member>
  3685. <member name="M:System.Web.Mvc.ModelMetadata.GetSimpleDisplayText">
  3686. <summary>Returns the simple description of the model.</summary>
  3687. <returns>The simple description of the model.</returns>
  3688. </member>
  3689. <member name="M:System.Web.Mvc.ModelMetadata.GetValidators(System.Web.Mvc.ControllerContext)">
  3690. <summary>Gets a list of validators for the model.</summary>
  3691. <returns>A list of validators for the model.</returns>
  3692. <param name="context">The controller context.</param>
  3693. </member>
  3694. <member name="P:System.Web.Mvc.ModelMetadata.HideSurroundingHtml">
  3695. <summary>Gets or sets a value that indicates whether the model object should be rendered using associated HTML elements.</summary>
  3696. <returns>true if the associated HTML elements that contains the model object should be included with the object; otherwise, false.</returns>
  3697. </member>
  3698. <member name="P:System.Web.Mvc.ModelMetadata.IsComplexType">
  3699. <summary>Gets or sets a value that indicates whether the model is a complex type.</summary>
  3700. <returns>A value that indicates whether the model is considered a complex type by the MVC framework.</returns>
  3701. </member>
  3702. <member name="P:System.Web.Mvc.ModelMetadata.IsNullableValueType">
  3703. <summary>Gets a value that indicates whether the type is nullable.</summary>
  3704. <returns>true if the type is nullable; otherwise, false.</returns>
  3705. </member>
  3706. <member name="P:System.Web.Mvc.ModelMetadata.IsReadOnly">
  3707. <summary>Gets or sets a value that indicates whether the model is read-only.</summary>
  3708. <returns>true if the model is read-only; otherwise, false.</returns>
  3709. </member>
  3710. <member name="P:System.Web.Mvc.ModelMetadata.IsRequired">
  3711. <summary>Gets or sets a value that indicates whether the model is required.</summary>
  3712. <returns>true if the model is required; otherwise, false.</returns>
  3713. </member>
  3714. <member name="P:System.Web.Mvc.ModelMetadata.Model">
  3715. <summary>Gets the value of the model.</summary>
  3716. <returns>The value of the model. For more information about <see cref="T:System.Web.Mvc.ModelMetadata" />, see the entry ASP.NET MVC 2 Templates, Part 2: ModelMetadata on Brad Wilson's blog</returns>
  3717. </member>
  3718. <member name="P:System.Web.Mvc.ModelMetadata.ModelType">
  3719. <summary>Gets the type of the model.</summary>
  3720. <returns>The type of the model.</returns>
  3721. </member>
  3722. <member name="P:System.Web.Mvc.ModelMetadata.NullDisplayText">
  3723. <summary>Gets or sets the string to display for null values.</summary>
  3724. <returns>The string to display for null values.</returns>
  3725. </member>
  3726. <member name="P:System.Web.Mvc.ModelMetadata.Order">
  3727. <summary>Gets or sets a value that represents order of the current metadata.</summary>
  3728. <returns>Returns <see cref="T:System.Int32" />.</returns>
  3729. </member>
  3730. <member name="P:System.Web.Mvc.ModelMetadata.Properties">
  3731. <summary>Gets a collection of model metadata objects that describe the properties of the model.</summary>
  3732. <returns>A collection of model metadata objects that describe the properties of the model.</returns>
  3733. </member>
  3734. <member name="P:System.Web.Mvc.ModelMetadata.PropertyName">
  3735. <summary>Gets the property name.</summary>
  3736. <returns>The property name.</returns>
  3737. </member>
  3738. <member name="P:System.Web.Mvc.ModelMetadata.Provider">
  3739. <summary>Gets or sets the provider.</summary>
  3740. <returns>The provider.</returns>
  3741. </member>
  3742. <member name="P:System.Web.Mvc.ModelMetadata.RequestValidationEnabled"></member>
  3743. <member name="P:System.Web.Mvc.ModelMetadata.ShortDisplayName">
  3744. <summary>Gets or sets a short display name.</summary>
  3745. <returns>The short display name.</returns>
  3746. </member>
  3747. <member name="P:System.Web.Mvc.ModelMetadata.ShowForDisplay">
  3748. <summary>Gets or sets a value that indicates whether the property should be displayed in read-only views such as list and detail views.</summary>
  3749. <returns>true if the model should be displayed in read-only views; otherwise, false.</returns>
  3750. </member>
  3751. <member name="P:System.Web.Mvc.ModelMetadata.ShowForEdit">
  3752. <summary>Gets or sets a value that indicates whether the model should be displayed in editable views.</summary>
  3753. <returns>true if the model should be displayed in editable views; otherwise, false.</returns>
  3754. </member>
  3755. <member name="P:System.Web.Mvc.ModelMetadata.SimpleDisplayText">
  3756. <summary>Gets or sets the simple display string for the model.</summary>
  3757. <returns>The simple display string for the model.</returns>
  3758. </member>
  3759. <member name="P:System.Web.Mvc.ModelMetadata.TemplateHint">
  3760. <summary>Gets or sets a hint that suggests what template to use for this model.</summary>
  3761. <returns>A hint that suggests what template to use for this model.</returns>
  3762. </member>
  3763. <member name="P:System.Web.Mvc.ModelMetadata.Watermark">
  3764. <summary>Gets or sets a value that can be used as a watermark.</summary>
  3765. <returns>The watermark.</returns>
  3766. </member>
  3767. <member name="T:System.Web.Mvc.ModelMetadataProvider">
  3768. <summary>Provides an abstract base class for a custom metadata provider.</summary>
  3769. </member>
  3770. <member name="M:System.Web.Mvc.ModelMetadataProvider.#ctor">
  3771. <summary>When overridden in a derived class, initializes a new instance of the object that derives from the <see cref="T:System.Web.Mvc.ModelMetadataProvider" /> class.</summary>
  3772. </member>
  3773. <member name="M:System.Web.Mvc.ModelMetadataProvider.GetMetadataForProperties(System.Object,System.Type)">
  3774. <summary>Gets a <see cref="T:System.Web.Mvc.ModelMetadata" /> object for each property of a model.</summary>
  3775. <returns>A <see cref="T:System.Web.Mvc.ModelMetadata" /> object for each property of a model.</returns>
  3776. <param name="container">The container.</param>
  3777. <param name="containerType">The type of the container.</param>
  3778. </member>
  3779. <member name="M:System.Web.Mvc.ModelMetadataProvider.GetMetadataForProperty(System.Func`1,System.Void,System.Object)">
  3780. <summary>Gets metadata for the specified property.</summary>
  3781. <returns>Returns <see cref="T:System.Web.Mvc.ModelMetadata" />.</returns>
  3782. <param name="modelAccessor">The model accessor.</param>
  3783. <param name="containerType">The type of the container.</param>
  3784. <param name="propertyName">The property to get the metadata model for.</param>
  3785. </member>
  3786. <member name="M:System.Web.Mvc.ModelMetadataProvider.GetMetadataForType(System.Func`1,System.Void)">
  3787. <summary>Gets metadata for the specified model accessor and model type.</summary>
  3788. <returns>Returns <see cref="T:System.Web.Mvc.ModelMetadata" />.</returns>
  3789. <param name="modelAccessor">The model accessor.</param>
  3790. <param name="modelType">The type of the model.</param>
  3791. </member>
  3792. <member name="T:System.Web.Mvc.ModelMetadataProviders">
  3793. <summary>Provides a container for the current <see cref="T:System.Web.Mvc.ModelMetadataProvider" /> instance.</summary>
  3794. </member>
  3795. <member name="P:System.Web.Mvc.ModelMetadataProviders.Current">
  3796. <summary>Gets or sets the current <see cref="T:System.Web.Mvc.ModelMetadataProvider" /> object.</summary>
  3797. <returns>The current <see cref="T:System.Web.Mvc.ModelMetadataProvider" /> object.</returns>
  3798. </member>
  3799. <member name="T:System.Web.Mvc.ModelSpan">
  3800. <summary>Provides a model-aware <see cref="T:System.Web.Razor.Parser.SyntaxTree.Span" /> class for ASP.NET MVC.</summary>
  3801. </member>
  3802. <member name="M:System.Web.Mvc.ModelSpan.#ctor(System.Web.Razor.Text.SourceLocation,System.String,System.String)">
  3803. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ModelSpan" /> class.</summary>
  3804. <param name="start">The start of the span.</param>
  3805. <param name="content">The content.</param>
  3806. <param name="modelTypeName">The type name of the model.</param>
  3807. </member>
  3808. <member name="M:System.Web.Mvc.ModelSpan.Equals(System.Object)">
  3809. <summary>Gets a value that indicates whether the current <see cref="T:System.Web.Mvc.ModelSpan" /> object is identical to the specified object.</summary>
  3810. <returns>true if the current <see cref="T:System.Web.Mvc.ModelSpan" /> object is identical to the specified object; otherwise, false.</returns>
  3811. <param name="obj">The model span object.</param>
  3812. </member>
  3813. <member name="M:System.Web.Mvc.ModelSpan.GetHashCode">
  3814. <summary>Returns the hash code of the <see cref="T:System.Web.Mvc.ModelSpan" /> object.</summary>
  3815. <returns>The hash code of the <see cref="T:System.Web.Mvc.ModelSpan" /> object.</returns>
  3816. </member>
  3817. <member name="P:System.Web.Mvc.ModelSpan.ModelTypeName">
  3818. <summary>Gets the type name of the model.</summary>
  3819. <returns>The type name of the model.</returns>
  3820. </member>
  3821. <member name="T:System.Web.Mvc.ModelState">
  3822. <summary>Encapsulates the state of model binding to a property of an action-method argument, or to the argument itself.</summary>
  3823. </member>
  3824. <member name="M:System.Web.Mvc.ModelState.#ctor">
  3825. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ModelState" /> class.</summary>
  3826. </member>
  3827. <member name="P:System.Web.Mvc.ModelState.Errors">
  3828. <summary>Returns a <see cref="T:System.Web.Mvc.ModelErrorCollection" /> object that contains any errors that occurred during model binding.</summary>
  3829. <returns>The errors.</returns>
  3830. </member>
  3831. <member name="P:System.Web.Mvc.ModelState.Value">
  3832. <summary>Returns a <see cref="T:System.Web.Mvc.ValueProviderResult" /> object that encapsulates the value that was being bound during model binding.</summary>
  3833. <returns>The value.</returns>
  3834. </member>
  3835. <member name="T:System.Web.Mvc.ModelStateDictionary">
  3836. <summary>Represents the state of an attempt to bind a posted form to an action method, which includes validation information.</summary>
  3837. </member>
  3838. <member name="M:System.Web.Mvc.ModelStateDictionary.#ctor">
  3839. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ModelStateDictionary" /> class.</summary>
  3840. </member>
  3841. <member name="M:System.Web.Mvc.ModelStateDictionary.#ctor(System.Web.Mvc.ModelStateDictionary)">
  3842. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ModelStateDictionary" /> class by using values that are copied from the specified model-state dictionary.</summary>
  3843. <param name="dictionary">The model-state dictionary.</param>
  3844. <exception cref="T:System.ArgumentNullException">The <paramref name="dictionary " />parameter is null.</exception>
  3845. </member>
  3846. <member name="M:System.Web.Mvc.ModelStateDictionary.Add(System.Collections.Generic.KeyValuePair{System.String,System.Web.Mvc.ModelState})">
  3847. <summary>Adds the specified item to the model-state dictionary.</summary>
  3848. <param name="item">The object to add to the model-state dictionary.</param>
  3849. <exception cref="T:System.NotSupportedException">The model-state dictionary is read-only.</exception>
  3850. </member>
  3851. <member name="M:System.Web.Mvc.ModelStateDictionary.Add(System.String,System.Web.Mvc.ModelState)">
  3852. <summary>Adds an element that has the specified key and value to the model-state dictionary.</summary>
  3853. <param name="key">The key of the element to add.</param>
  3854. <param name="value">The value of the element to add.</param>
  3855. <exception cref="T:System.NotSupportedException">The model-state dictionary is read-only.</exception>
  3856. <exception cref="T:System.ArgumentNullException">
  3857. <paramref name="key" /> is null.</exception>
  3858. <exception cref="T:System.ArgumentException">An element that has the specified key already occurs in the model-state dictionary.</exception>
  3859. </member>
  3860. <member name="M:System.Web.Mvc.ModelStateDictionary.AddModelError(System.String,System.Exception)">
  3861. <summary>Adds the specified model error to the errors collection for the model-state dictionary that is associated with the specified key.</summary>
  3862. <param name="key">The key.</param>
  3863. <param name="exception">The exception.</param>
  3864. </member>
  3865. <member name="M:System.Web.Mvc.ModelStateDictionary.AddModelError(System.String,System.String)">
  3866. <summary>Adds the specified error message to the errors collection for the model-state dictionary that is associated with the specified key.</summary>
  3867. <param name="key">The key.</param>
  3868. <param name="errorMessage">The error message.</param>
  3869. </member>
  3870. <member name="M:System.Web.Mvc.ModelStateDictionary.Clear">
  3871. <summary>Removes all items from the model-state dictionary.</summary>
  3872. <exception cref="T:System.NotSupportedException">The model-state dictionary is read-only.</exception>
  3873. </member>
  3874. <member name="M:System.Web.Mvc.ModelStateDictionary.Contains(System.Collections.Generic.KeyValuePair{System.String,System.Web.Mvc.ModelState})">
  3875. <summary>Determines whether the model-state dictionary contains a specific value.</summary>
  3876. <returns>true if <paramref name="item" /> is found in the model-state dictionary; otherwise, false.</returns>
  3877. <param name="item">The object to locate in the model-state dictionary.</param>
  3878. </member>
  3879. <member name="M:System.Web.Mvc.ModelStateDictionary.ContainsKey(System.String)">
  3880. <summary>Determines whether the model-state dictionary contains the specified key.</summary>
  3881. <returns>true if the model-state dictionary contains the specified key; otherwise, false.</returns>
  3882. <param name="key">The key to locate in the model-state dictionary. </param>
  3883. </member>
  3884. <member name="M:System.Web.Mvc.ModelStateDictionary.CopyTo(System.Collections.Generic.KeyValuePair{System.String,System.Web.Mvc.ModelState}[],System.Int32)">
  3885. <summary>Copies the elements of the model-state dictionary to an array, starting at a specified index.</summary>
  3886. <param name="array">The one-dimensional array that is the destination of the elements copied from the <see cref="T:System.Collections.Generic.ICollection`1" /> object. The array must have zero-based indexing.</param>
  3887. <param name="arrayIndex">The zero-based index in <paramref name="array" /> at which copying starts.</param>
  3888. <exception cref="T:System.ArgumentNullException">
  3889. <paramref name="array" /> is null.</exception>
  3890. <exception cref="T:System.ArgumentOutOfRangeException">
  3891. <paramref name="arrayIndex" /> is less than 0.</exception>
  3892. <exception cref="T:System.ArgumentException">
  3893. <paramref name="array" /> is multidimensional.-or- <paramref name="arrayIndex" /> is equal to or greater than the length of <paramref name="array" />.-or- The number of elements in the source collection is greater than the available space from <paramref name="arrayIndex" /> to the end of the destination <paramref name="array" />.-or- Type <paramref name="T" /> cannot be cast automatically to the type of the destination <paramref name="array" />.</exception>
  3894. </member>
  3895. <member name="P:System.Web.Mvc.ModelStateDictionary.Count">
  3896. <summary>Gets the number of key/value pairs in the collection.</summary>
  3897. <returns>The number of key/value pairs in the collection.</returns>
  3898. </member>
  3899. <member name="M:System.Web.Mvc.ModelStateDictionary.GetEnumerator">
  3900. <summary>Returns an enumerator that can be used to iterate through the collection.</summary>
  3901. <returns>An enumerator that can be used to iterate through the collection.</returns>
  3902. </member>
  3903. <member name="P:System.Web.Mvc.ModelStateDictionary.IsReadOnly">
  3904. <summary>Gets a value that indicates whether the collection is read-only.</summary>
  3905. <returns>true if the collection is read-only; otherwise, false.</returns>
  3906. </member>
  3907. <member name="P:System.Web.Mvc.ModelStateDictionary.IsValid">
  3908. <summary>Gets a value that indicates whether this instance of the model-state dictionary is valid.</summary>
  3909. <returns>true if this instance is valid; otherwise, false.</returns>
  3910. </member>
  3911. <member name="M:System.Web.Mvc.ModelStateDictionary.IsValidField(System.String)">
  3912. <summary>Determines whether there are any <see cref="T:System.Web.Mvc.ModelError" /> objects that are associated with or prefixed with the specified key.</summary>
  3913. <returns>true if the model-state dictionary contains a value that is associated with the specified key; otherwise, false.</returns>
  3914. <param name="key">The key.</param>
  3915. <exception cref="T:System.ArgumentNullException">The <paramref name="key" /> parameter is null.</exception>
  3916. </member>
  3917. <member name="P:System.Web.Mvc.ModelStateDictionary.Item(System.String)">
  3918. <summary>Gets or sets the value that is associated with the specified key.</summary>
  3919. <returns>The model state item.</returns>
  3920. <param name="key">The key.</param>
  3921. </member>
  3922. <member name="P:System.Web.Mvc.ModelStateDictionary.Keys">
  3923. <summary>Gets a collection that contains the keys in the dictionary.</summary>
  3924. <returns>A collection that contains the keys of the model-state dictionary.</returns>
  3925. </member>
  3926. <member name="M:System.Web.Mvc.ModelStateDictionary.Merge(System.Web.Mvc.ModelStateDictionary)">
  3927. <summary>Copies the values from the specified <see cref="T:System.Web.Mvc.ModelStateDictionary" /> object into this dictionary, overwriting existing values if keys are the same.</summary>
  3928. <param name="dictionary">The dictionary.</param>
  3929. </member>
  3930. <member name="M:System.Web.Mvc.ModelStateDictionary.Remove(System.Collections.Generic.KeyValuePair{System.String,System.Web.Mvc.ModelState})">
  3931. <summary>Removes the first occurrence of the specified object from the model-state dictionary.</summary>
  3932. <returns>true if <paramref name="item" /> was successfully removed the model-state dictionary; otherwise, false. This method also returns false if <paramref name="item" /> is not found in the model-state dictionary.</returns>
  3933. <param name="item">The object to remove from the model-state dictionary.</param>
  3934. <exception cref="T:System.NotSupportedException">The model-state dictionary is read-only.</exception>
  3935. </member>
  3936. <member name="M:System.Web.Mvc.ModelStateDictionary.Remove(System.String)">
  3937. <summary>Removes the element that has the specified key from the model-state dictionary.</summary>
  3938. <returns>true if the element is successfully removed; otherwise, false. This method also returns false if <paramref name="key" /> was not found in the model-state dictionary.</returns>
  3939. <param name="key">The key of the element to remove.</param>
  3940. <exception cref="T:System.NotSupportedException">The model-state dictionary is read-only.</exception>
  3941. <exception cref="T:System.ArgumentNullException">
  3942. <paramref name="key" /> is null.</exception>
  3943. </member>
  3944. <member name="M:System.Web.Mvc.ModelStateDictionary.SetModelValue(System.String,System.Web.Mvc.ValueProviderResult)">
  3945. <summary>Sets the value for the specified key by using the specified value provider dictionary.</summary>
  3946. <param name="key">The key.</param>
  3947. <param name="value">The value.</param>
  3948. </member>
  3949. <member name="M:System.Web.Mvc.ModelStateDictionary.System#Collections#IEnumerable#GetEnumerator">
  3950. <summary>Returns an enumerator that can be used to iterate through the collection.</summary>
  3951. <returns>An enumerator that can be used to iterate through the collection.</returns>
  3952. </member>
  3953. <member name="M:System.Web.Mvc.ModelStateDictionary.TryGetValue(System.String,System.Web.Mvc.ModelState@)">
  3954. <summary>Attempts to gets the value that is associated with the specified key.</summary>
  3955. <returns>true if the object that implements <see cref="T:System.Collections.Generic.IDictionary`2" /> contains an element that has the specified key; otherwise, false.</returns>
  3956. <param name="key">The key of the value to get.</param>
  3957. <param name="value">When this method returns, the value associated with the specified key, if the key is found; otherwise, the default value for the type of the <paramref name="value" /> parameter. This parameter is passed uninitialized.</param>
  3958. <exception cref="T:System.ArgumentNullException">
  3959. <paramref name="key" /> is null.</exception>
  3960. </member>
  3961. <member name="P:System.Web.Mvc.ModelStateDictionary.Values">
  3962. <summary>Gets a collection that contains the values in the dictionary.</summary>
  3963. <returns>A collection that contains the values of the model-state dictionary.</returns>
  3964. </member>
  3965. <member name="T:System.Web.Mvc.ModelValidationResult">
  3966. <summary>Provides a container for a validation result.</summary>
  3967. </member>
  3968. <member name="M:System.Web.Mvc.ModelValidationResult.#ctor">
  3969. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ModelValidationResult" /> class.</summary>
  3970. </member>
  3971. <member name="P:System.Web.Mvc.ModelValidationResult.MemberName">
  3972. <summary>Gets or sets the name of the member.</summary>
  3973. <returns>The name of the member.</returns>
  3974. </member>
  3975. <member name="P:System.Web.Mvc.ModelValidationResult.Message">
  3976. <summary>Gets or sets the validation result message.</summary>
  3977. <returns>The validation result message.</returns>
  3978. </member>
  3979. <member name="T:System.Web.Mvc.ModelValidator">
  3980. <summary>Provides a base class for implementing validation logic.</summary>
  3981. </member>
  3982. <member name="M:System.Web.Mvc.ModelValidator.#ctor(System.Web.Mvc.ModelMetadata,System.Web.Mvc.ControllerContext)">
  3983. <summary>Called from constructors in derived classes to initialize the <see cref="T:System.Web.Mvc.ModelValidator" /> class.</summary>
  3984. <param name="metadata">The metadata.</param>
  3985. <param name="controllerContext">The controller context.</param>
  3986. </member>
  3987. <member name="P:System.Web.Mvc.ModelValidator.ControllerContext">
  3988. <summary>Gets the controller context.</summary>
  3989. <returns>The controller context.</returns>
  3990. </member>
  3991. <member name="M:System.Web.Mvc.ModelValidator.GetClientValidationRules">
  3992. <summary>When implemented in a derived class, returns metadata for client validation.</summary>
  3993. <returns>The metadata for client validation.</returns>
  3994. </member>
  3995. <member name="M:System.Web.Mvc.ModelValidator.GetModelValidator(System.Web.Mvc.ModelMetadata,System.Web.Mvc.ControllerContext)">
  3996. <summary>Returns a composite model validator for the model.</summary>
  3997. <returns>A composite model validator for the model.</returns>
  3998. <param name="metadata">The metadata.</param>
  3999. <param name="context">The controller context.</param>
  4000. </member>
  4001. <member name="P:System.Web.Mvc.ModelValidator.IsRequired">
  4002. <summary>Gets or sets a value that indicates whether a model property is required.</summary>
  4003. <returns>true if the model property is required; otherwise, false.</returns>
  4004. </member>
  4005. <member name="P:System.Web.Mvc.ModelValidator.Metadata">
  4006. <summary>Gets the metadata for the model validator.</summary>
  4007. <returns>The metadata for the model validator.</returns>
  4008. </member>
  4009. <member name="M:System.Web.Mvc.ModelValidator.Validate(System.Object)">
  4010. <summary>When implemented in a derived class, validates the object.</summary>
  4011. <returns>A list of validation results.</returns>
  4012. <param name="container">The container.</param>
  4013. </member>
  4014. <member name="T:System.Web.Mvc.ModelValidatorProvider">
  4015. <summary>Provides a list of validators for a model.</summary>
  4016. </member>
  4017. <member name="M:System.Web.Mvc.ModelValidatorProvider.#ctor">
  4018. <summary>When implemented in a derived class, initializes a new instance of the <see cref="T:System.Web.Mvc.ModelValidatorProvider" /> class.</summary>
  4019. </member>
  4020. <member name="M:System.Web.Mvc.ModelValidatorProvider.GetValidators(System.Web.Mvc.ModelMetadata,System.Web.Mvc.ControllerContext)">
  4021. <summary>Gets a list of validators.</summary>
  4022. <returns>A list of validators.</returns>
  4023. <param name="metadata">The metadata.</param>
  4024. <param name="context">The context.</param>
  4025. </member>
  4026. <member name="T:System.Web.Mvc.ModelValidatorProviderCollection">
  4027. <summary>Provides a container for a list of validation providers.</summary>
  4028. </member>
  4029. <member name="M:System.Web.Mvc.ModelValidatorProviderCollection.#ctor">
  4030. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ModelValidatorProviderCollection" /> class.</summary>
  4031. </member>
  4032. <member name="M:System.Web.Mvc.ModelValidatorProviderCollection.#ctor(System.Collections.Generic.IList{System.Web.Mvc.ModelValidatorProvider})">
  4033. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ModelValidatorProviderCollection" /> class using a list of model-validation providers.</summary>
  4034. <param name="list">A list of model-validation providers.</param>
  4035. </member>
  4036. <member name="M:System.Web.Mvc.ModelValidatorProviderCollection.GetValidators(System.Web.Mvc.ModelMetadata,System.Web.Mvc.ControllerContext)">
  4037. <summary>Returns the list of model validators.</summary>
  4038. <returns>The list of model validators.</returns>
  4039. <param name="metadata">The model metadata.</param>
  4040. <param name="context">The controller context.</param>
  4041. </member>
  4042. <member name="M:System.Web.Mvc.ModelValidatorProviderCollection.InsertItem(System.Int32,System.Web.Mvc.ModelValidatorProvider)">
  4043. <summary>Inserts a model-validator provider into the collection.</summary>
  4044. <param name="index">The zero-based index at which item should be inserted.</param>
  4045. <param name="item">The model-validator provider object to insert.</param>
  4046. </member>
  4047. <member name="M:System.Web.Mvc.ModelValidatorProviderCollection.SetItem(System.Int32,System.Web.Mvc.ModelValidatorProvider)">
  4048. <summary>Replaces the model-validator provider element at the specified index.</summary>
  4049. <param name="index">The zero-based index of the model-validator provider element to replace.</param>
  4050. <param name="item">The new value for the model-validator provider element.</param>
  4051. </member>
  4052. <member name="T:System.Web.Mvc.ModelValidatorProviders">
  4053. <summary>Provides a container for the current validation provider.</summary>
  4054. </member>
  4055. <member name="P:System.Web.Mvc.ModelValidatorProviders.Providers">
  4056. <summary>Gets the model validator provider collection.</summary>
  4057. <returns>The model validator provider collection.</returns>
  4058. </member>
  4059. <member name="T:System.Web.Mvc.MultiSelectList">
  4060. <summary>Represents a list of items that users can select more than one item from.</summary>
  4061. </member>
  4062. <member name="M:System.Web.Mvc.MultiSelectList.#ctor(System.Collections.IEnumerable)">
  4063. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.MultiSelectList" /> class by using the specified items to include in the list.</summary>
  4064. <param name="items">The items.</param>
  4065. <exception cref="T:System.ArgumentNullException">The <paramref name="items" /> parameter is null.</exception>
  4066. </member>
  4067. <member name="M:System.Web.Mvc.MultiSelectList.#ctor(System.Collections.IEnumerable,System.Collections.IEnumerable)">
  4068. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.MultiSelectList" /> class by using the specified items to include in the list and the selected values.</summary>
  4069. <param name="items">The items.</param>
  4070. <param name="selectedValues">The selected values.</param>
  4071. <exception cref="T:System.ArgumentNullException">The <paramref name="items" /> parameter is null.</exception>
  4072. </member>
  4073. <member name="M:System.Web.Mvc.MultiSelectList.#ctor(System.Collections.IEnumerable,System.String,System.String)">
  4074. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.MultiSelectList" /> class by using the items to include in the list, the data value field, and the data text field.</summary>
  4075. <param name="items">The items.</param>
  4076. <param name="dataValueField">The data value field.</param>
  4077. <param name="dataTextField">The data text field.</param>
  4078. <exception cref="T:System.ArgumentNullException">The <paramref name="items" /> parameter is null.</exception>
  4079. </member>
  4080. <member name="M:System.Web.Mvc.MultiSelectList.#ctor(System.Collections.IEnumerable,System.String,System.String,System.Collections.IEnumerable)">
  4081. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.MultiSelectList" /> class by using the items to include in the list, the data value field, the data text field, and the selected values.</summary>
  4082. <param name="items">The items.</param>
  4083. <param name="dataValueField">The data value field.</param>
  4084. <param name="dataTextField">The data text field.</param>
  4085. <param name="selectedValues">The selected values.</param>
  4086. <exception cref="T:System.ArgumentNullException">The <paramref name="items" /> parameter is null.</exception>
  4087. </member>
  4088. <member name="P:System.Web.Mvc.MultiSelectList.DataTextField">
  4089. <summary>Gets or sets the data text field.</summary>
  4090. <returns>The data text field.</returns>
  4091. </member>
  4092. <member name="P:System.Web.Mvc.MultiSelectList.DataValueField">
  4093. <summary>Gets or sets the data value field.</summary>
  4094. <returns>The data value field.</returns>
  4095. </member>
  4096. <member name="M:System.Web.Mvc.MultiSelectList.GetEnumerator">
  4097. <summary>Returns an enumerator that can be used to iterate through the collection.</summary>
  4098. <returns>An enumerator that can be used to iterate through the collection.</returns>
  4099. </member>
  4100. <member name="P:System.Web.Mvc.MultiSelectList.Items">
  4101. <summary>Gets or sets the items in the list.</summary>
  4102. <returns>The items in the list.</returns>
  4103. </member>
  4104. <member name="P:System.Web.Mvc.MultiSelectList.SelectedValues">
  4105. <summary>Gets or sets the selected values.</summary>
  4106. <returns>The selected values.</returns>
  4107. </member>
  4108. <member name="M:System.Web.Mvc.MultiSelectList.System#Collections#IEnumerable#GetEnumerator">
  4109. <summary>Returns an enumerator can be used to iterate through a collection.</summary>
  4110. <returns>An enumerator that can be used to iterate through the collection.</returns>
  4111. </member>
  4112. <member name="T:System.Web.Mvc.MvcCSharpRazorCodeGenerator">
  4113. <summary>Compiles ASP.NET Razor views into classes.</summary>
  4114. </member>
  4115. <member name="M:System.Web.Mvc.MvcCSharpRazorCodeGenerator.#ctor(System.String,System.String,System.String,System.Web.Razor.RazorEngineHost)">
  4116. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.MvcCSharpRazorCodeGenerator" /> class.</summary>
  4117. <param name="className">The class name.</param>
  4118. <param name="rootNamespaceName">The root namespace.</param>
  4119. <param name="sourceFileName">The name of the source file.</param>
  4120. <param name="host">The ASP.NET Razor engine host.</param>
  4121. </member>
  4122. <member name="M:System.Web.Mvc.MvcCSharpRazorCodeGenerator.TryVisitSpecialSpan(System.Web.Razor.Parser.SyntaxTree.Span)">
  4123. <summary>Returns a value that indicates whether the specified model span is an instance of <see cref="T:System.Web.Mvc.ModelSpan" />.</summary>
  4124. <returns>true if the value of the <paramref name="span" /> parameter is an instance of <see cref="T:System.Web.Mvc.ModelSpan" />; otherwise, false.</returns>
  4125. <param name="span">The model span.</param>
  4126. </member>
  4127. <member name="T:System.Web.Mvc.MvcCSharpRazorCodeParser">
  4128. <summary>Extends the CSharpCodeParser class by adding support for the @model keyword.</summary>
  4129. </member>
  4130. <member name="M:System.Web.Mvc.MvcCSharpRazorCodeParser.#ctor">
  4131. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.MvcCSharpRazorCodeParser" /> class.</summary>
  4132. </member>
  4133. <member name="M:System.Web.Mvc.MvcCSharpRazorCodeParser.ParseInheritsStatement(System.Web.Razor.Parser.CodeBlockInfo)">
  4134. <summary>Determines whether the current code block and model should be inherited using the specified code block.</summary>
  4135. <returns>true if the code block and model is inherited; otherwise, false.</returns>
  4136. <param name="block">The code block information.</param>
  4137. </member>
  4138. <member name="T:System.Web.Mvc.MvcFilter">
  4139. <summary>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.</summary>
  4140. </member>
  4141. <member name="M:System.Web.Mvc.MvcFilter.#ctor">
  4142. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.MvcFilter" /> class.</summary>
  4143. </member>
  4144. <member name="M:System.Web.Mvc.MvcFilter.#ctor(System.Boolean,System.Int32)">
  4145. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.MvcFilter" /> class and specifies the order of filters and whether multiple filters are allowed.</summary>
  4146. <param name="allowMultiple">true to specify that multiple filters of the same type are allowed; otherwise, false.</param>
  4147. <param name="order">The filter order.</param>
  4148. </member>
  4149. <member name="P:System.Web.Mvc.MvcFilter.AllowMultiple">
  4150. <summary>Gets a value that indicates whether more than one instance of the filter attribute can be specified.</summary>
  4151. <returns>true if more than one instance of the filter attribute is allowed; otherwise, false.</returns>
  4152. </member>
  4153. <member name="P:System.Web.Mvc.MvcFilter.Order">
  4154. <summary>Gets a value that indicates the order in which a filter is applied.</summary>
  4155. <returns>A value that indicates the order in which a filter is applied.</returns>
  4156. </member>
  4157. <member name="T:System.Web.Mvc.MvcHandler">
  4158. <summary>Selects the controller that will handle an HTTP request.</summary>
  4159. </member>
  4160. <member name="M:System.Web.Mvc.MvcHandler.#ctor(System.Web.Routing.RequestContext)">
  4161. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.MvcHandler" /> class.</summary>
  4162. <param name="requestContext">The request context.</param>
  4163. <exception cref="T:System.ArgumentNullException">The <paramref name="requestContext" /> parameter is null.</exception>
  4164. </member>
  4165. <member name="M:System.Web.Mvc.MvcHandler.AddVersionHeader(System.Web.HttpContextBase)">
  4166. <summary>Adds the version header by using the specified HTTP context.</summary>
  4167. <param name="httpContext">The HTTP context.</param>
  4168. </member>
  4169. <member name="M:System.Web.Mvc.MvcHandler.BeginProcessRequest(System.Web.HttpContext,System.AsyncCallback,System.Object)">
  4170. <summary>Called by ASP.NET to begin asynchronous request processing.</summary>
  4171. <returns>The status of the asynchronous call.</returns>
  4172. <param name="httpContext">The HTTP context.</param>
  4173. <param name="callback">The asynchronous callback method.</param>
  4174. <param name="state">The state of the asynchronous object.</param>
  4175. </member>
  4176. <member name="M:System.Web.Mvc.MvcHandler.BeginProcessRequest(System.Web.HttpContextBase,System.AsyncCallback,System.Object)">
  4177. <summary>Called by ASP.NET to begin asynchronous request processing using the base HTTP context.</summary>
  4178. <returns>The status of the asynchronous call.</returns>
  4179. <param name="httpContext">The HTTP context.</param>
  4180. <param name="callback">The asynchronous callback method.</param>
  4181. <param name="state">The state of the asynchronous object.</param>
  4182. </member>
  4183. <member name="P:System.Web.Mvc.MvcHandler.DisableMvcResponseHeader">
  4184. <summary>Gets or sets a value that indicates whether the MVC response header is disabled.</summary>
  4185. <returns>true if the MVC response header is disabled; otherwise, false.</returns>
  4186. </member>
  4187. <member name="M:System.Web.Mvc.MvcHandler.EndProcessRequest(System.IAsyncResult)">
  4188. <summary>Called by ASP.NET when asynchronous request processing has ended.</summary>
  4189. <param name="asyncResult">The asynchronous result.</param>
  4190. </member>
  4191. <member name="P:System.Web.Mvc.MvcHandler.IsReusable">
  4192. <summary>Gets a value that indicates whether another request can use the <see cref="T:System.Web.IHttpHandler" /> instance.</summary>
  4193. <returns>true if the <see cref="T:System.Web.IHttpHandler" /> instance is reusable; otherwise, false.</returns>
  4194. </member>
  4195. <member name="F:System.Web.Mvc.MvcHandler.MvcVersionHeaderName">
  4196. <summary>Contains the header name of the ASP.NET MVC version.</summary>
  4197. </member>
  4198. <member name="M:System.Web.Mvc.MvcHandler.ProcessRequest(System.Web.HttpContext)">
  4199. <summary>Processes the request by using the specified HTTP request context.</summary>
  4200. <param name="httpContext">The HTTP context.</param>
  4201. </member>
  4202. <member name="M:System.Web.Mvc.MvcHandler.ProcessRequest(System.Web.HttpContextBase)">
  4203. <summary>Processes the request by using the specified base HTTP request context.</summary>
  4204. <param name="httpContext">The HTTP context.</param>
  4205. </member>
  4206. <member name="P:System.Web.Mvc.MvcHandler.RequestContext">
  4207. <summary>Gets the request context.</summary>
  4208. <returns>The request context.</returns>
  4209. </member>
  4210. <member name="M:System.Web.Mvc.MvcHandler.System#Web#IHttpAsyncHandler#BeginProcessRequest(System.Web.HttpContext,System.AsyncCallback,System.Object)">
  4211. <summary>Called by ASP.NET to begin asynchronous request processing using the base HTTP context.</summary>
  4212. <returns>The status of the asynchronous call.</returns>
  4213. <param name="context">The HTTP context.</param>
  4214. <param name="cb">The asynchronous callback method.</param>
  4215. <param name="extraData">The data.</param>
  4216. </member>
  4217. <member name="M:System.Web.Mvc.MvcHandler.System#Web#IHttpAsyncHandler#EndProcessRequest(System.IAsyncResult)">
  4218. <summary>Called by ASP.NET when asynchronous request processing has ended.</summary>
  4219. <param name="result">The asynchronous result.</param>
  4220. </member>
  4221. <member name="P:System.Web.Mvc.MvcHandler.System#Web#IHttpHandler#IsReusable">
  4222. <summary>Gets a value that indicates whether another request can use the <see cref="T:System.Web.IHttpHandler" /> instance.</summary>
  4223. <returns>true if the <see cref="T:System.Web.IHttpHandler" /> instance is reusable; otherwise, false.</returns>
  4224. </member>
  4225. <member name="M:System.Web.Mvc.MvcHandler.System#Web#IHttpHandler#ProcessRequest(System.Web.HttpContext)">
  4226. <summary>Enables processing of HTTP Web requests by a custom HTTP handler that implements the <see cref="T:System.Web.IHttpHandler" /> interface.</summary>
  4227. <param name="httpContext">An <see cref="T:System.Web.HttpContext" /> object that provides references to the intrinsic server objects (for example, Request, Response, Session, and Server) that are used to service HTTP requests.</param>
  4228. </member>
  4229. <member name="T:System.Web.Mvc.MvcHtmlString">
  4230. <summary>Represents an HTML-encoded string that should not be encoded again.</summary>
  4231. </member>
  4232. <member name="M:System.Web.Mvc.MvcHtmlString.#ctor(System.String)">
  4233. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.MvcHtmlString" /> class.</summary>
  4234. <param name="value">The string to create. If no value is assigned, the object is created using an empty-string value.</param>
  4235. </member>
  4236. <member name="M:System.Web.Mvc.MvcHtmlString.Create(System.String)">
  4237. <summary>Creates an HTML-encoded string using the specified text value.</summary>
  4238. <returns>An HTML-encoded string.</returns>
  4239. <param name="value">The value of the string to create .</param>
  4240. </member>
  4241. <member name="F:System.Web.Mvc.MvcHtmlString.Empty">
  4242. <summary>Contains an empty HTML string.</summary>
  4243. </member>
  4244. <member name="M:System.Web.Mvc.MvcHtmlString.IsNullOrEmpty(System.Web.Mvc.MvcHtmlString)">
  4245. <summary>Determines whether the specified string contains content or is either null or empty.</summary>
  4246. <returns>true if the string is null or empty; otherwise, false.</returns>
  4247. <param name="value">The string.</param>
  4248. </member>
  4249. <member name="T:System.Web.Mvc.MvcHttpHandler">
  4250. <summary>Verifies and processes an HTTP request.</summary>
  4251. </member>
  4252. <member name="M:System.Web.Mvc.MvcHttpHandler.#ctor">
  4253. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.MvcHttpHandler" /> class.</summary>
  4254. </member>
  4255. <member name="M:System.Web.Mvc.MvcHttpHandler.BeginProcessRequest(System.Web.HttpContext,System.AsyncCallback,System.Object)">
  4256. <summary>Called by ASP.NET to begin asynchronous request processing.</summary>
  4257. <returns>The status of the asynchronous call.</returns>
  4258. <param name="httpContext">The HTTP context.</param>
  4259. <param name="callback">The asynchronous callback method.</param>
  4260. <param name="state">The state.</param>
  4261. </member>
  4262. <member name="M:System.Web.Mvc.MvcHttpHandler.BeginProcessRequest(System.Web.HttpContextBase,System.AsyncCallback,System.Object)">
  4263. <summary>Called by ASP.NET to begin asynchronous request processing.</summary>
  4264. <returns>The status of the asynchronous call.</returns>
  4265. <param name="httpContext">The base HTTP context.</param>
  4266. <param name="callback">The asynchronous callback method.</param>
  4267. <param name="state">The state.</param>
  4268. </member>
  4269. <member name="M:System.Web.Mvc.MvcHttpHandler.EndProcessRequest(System.IAsyncResult)">
  4270. <summary>Called by ASP.NET when asynchronous request processing has ended.</summary>
  4271. <param name="asyncResult">The asynchronous result.</param>
  4272. </member>
  4273. <member name="M:System.Web.Mvc.MvcHttpHandler.System#Web#IHttpAsyncHandler#BeginProcessRequest(System.Web.HttpContext,System.AsyncCallback,System.Object)">
  4274. <summary>Called by ASP.NET to begin asynchronous request processing.</summary>
  4275. <returns>The status of the asynchronous call.</returns>
  4276. <param name="context">The context.</param>
  4277. <param name="cb">The asynchronous callback method.</param>
  4278. <param name="extraData">An object that contains data.</param>
  4279. </member>
  4280. <member name="M:System.Web.Mvc.MvcHttpHandler.System#Web#IHttpAsyncHandler#EndProcessRequest(System.IAsyncResult)">
  4281. <summary>Called by ASP.NET when asynchronous request processing has ended.</summary>
  4282. <param name="result">The status of the asynchronous operations.</param>
  4283. </member>
  4284. <member name="M:System.Web.Mvc.MvcHttpHandler.VerifyAndProcessRequest(System.Web.IHttpHandler,System.Web.HttpContextBase)">
  4285. <summary>Verifies and processes an HTTP request.</summary>
  4286. <param name="httpHandler">The HTTP handler.</param>
  4287. <param name="httpContext">The HTTP context.</param>
  4288. </member>
  4289. <member name="T:System.Web.Mvc.MvcRouteHandler">
  4290. <summary>Creates an object that implements the IHttpHandler interface and passes the request context to it.</summary>
  4291. </member>
  4292. <member name="M:System.Web.Mvc.MvcRouteHandler.#ctor">
  4293. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.MvcRouteHandler" /> class.</summary>
  4294. </member>
  4295. <member name="M:System.Web.Mvc.MvcRouteHandler.#ctor(System.Web.Mvc.IControllerFactory)">
  4296. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.MvcRouteHandler" /> class using the specified factory controller object.</summary>
  4297. <param name="controllerFactory">The controller factory.</param>
  4298. </member>
  4299. <member name="M:System.Web.Mvc.MvcRouteHandler.GetHttpHandler(System.Web.Routing.RequestContext)">
  4300. <summary>Returns the HTTP handler by using the specified HTTP context.</summary>
  4301. <returns>The HTTP handler.</returns>
  4302. <param name="requestContext">The request context.</param>
  4303. </member>
  4304. <member name="M:System.Web.Mvc.MvcRouteHandler.GetSessionStateBehavior(System.Web.Routing.RequestContext)">
  4305. <summary>Returns the session behavior.</summary>
  4306. <returns>The session behavior.</returns>
  4307. <param name="requestContext">The request context.</param>
  4308. </member>
  4309. <member name="M:System.Web.Mvc.MvcRouteHandler.System#Web#Routing#IRouteHandler#GetHttpHandler(System.Web.Routing.RequestContext)">
  4310. <summary>Returns the HTTP handler by using the specified request context.</summary>
  4311. <returns>The HTTP handler.</returns>
  4312. <param name="requestContext">The request context.</param>
  4313. </member>
  4314. <member name="T:System.Web.Mvc.MvcVBRazorCodeGenerator">
  4315. <summary>Compiles ASP.NET Razor views into classes.</summary>
  4316. </member>
  4317. <member name="M:System.Web.Mvc.MvcVBRazorCodeGenerator.#ctor(System.String,System.String,System.String,System.Web.Razor.RazorEngineHost)"></member>
  4318. <member name="M:System.Web.Mvc.MvcVBRazorCodeGenerator.TryVisitSpecialSpan(System.Web.Razor.Parser.SyntaxTree.Span)"></member>
  4319. <member name="T:System.Web.Mvc.MvcVBRazorCodeParser">
  4320. <summary>Extends the VBCodeParser class by adding support for the @model keyword.</summary>
  4321. </member>
  4322. <member name="M:System.Web.Mvc.MvcVBRazorCodeParser.#ctor">
  4323. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.MvcVBRazorCodeParser" /> class.</summary>
  4324. </member>
  4325. <member name="M:System.Web.Mvc.MvcVBRazorCodeParser.ParseInheritsStatement(System.Web.Razor.Parser.CodeBlockInfo)"></member>
  4326. <member name="T:System.Web.Mvc.MvcWebPageRazorHost">
  4327. <summary>Configures the ASP.NET Razor parser and code generator for a specified file.</summary>
  4328. </member>
  4329. <member name="M:System.Web.Mvc.MvcWebPageRazorHost.#ctor(System.String,System.String)">
  4330. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.MvcWebPageRazorHost" /> class. </summary>
  4331. <param name="virtualPath">The virtual path of the ASP.NET Razor file.</param>
  4332. <param name="physicalPath">The physical path of the ASP.NET Razor file.</param>
  4333. </member>
  4334. <member name="M:System.Web.Mvc.MvcWebPageRazorHost.DecorateCodeGenerator(System.Web.Razor.Generator.RazorCodeGenerator)"></member>
  4335. <member name="M:System.Web.Mvc.MvcWebPageRazorHost.DecorateCodeParser(System.Web.Razor.Parser.ParserBase)"></member>
  4336. <member name="T:System.Web.Mvc.MvcWebRazorHostFactory">
  4337. <summary>Creates instances of <see cref="T:System.Web.Mvc.MvcWebPageRazorHost" /> files.</summary>
  4338. </member>
  4339. <member name="M:System.Web.Mvc.MvcWebRazorHostFactory.#ctor">
  4340. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.MvcWebRazorHostFactory" /> class. </summary>
  4341. </member>
  4342. <member name="M:System.Web.Mvc.MvcWebRazorHostFactory.CreateHost(System.String,System.String)">
  4343. <summary>Creates a Razor host.</summary>
  4344. <returns>A Razor host.</returns>
  4345. <param name="virtualPath">The virtual path to the target file.</param>
  4346. <param name="physicalPath">The physical path to the target file.</param>
  4347. </member>
  4348. <member name="T:System.Web.Mvc.NameValueCollectionExtensions">
  4349. <summary>Extends a NameValueCollection object so that the collection can be copied to a specified dictionary.</summary>
  4350. </member>
  4351. <member name="M:System.Web.Mvc.NameValueCollectionExtensions.CopyTo(System.Collections.Specialized.NameValueCollection,System.Collections.Generic.IDictionary{System.String,System.Object})">
  4352. <summary>Copies the specified collection to the specified destination.</summary>
  4353. <param name="collection">The collection.</param>
  4354. <param name="destination">The destination.</param>
  4355. </member>
  4356. <member name="M:System.Web.Mvc.NameValueCollectionExtensions.CopyTo(System.Collections.Specialized.NameValueCollection,System.Collections.Generic.IDictionary{System.String,System.Object},System.Boolean)">
  4357. <summary>Copies the specified collection to the specified destination, and optionally replaces previous entries.</summary>
  4358. <param name="collection">The collection.</param>
  4359. <param name="destination">The destination.</param>
  4360. <param name="replaceEntries">true to replace previous entries; otherwise, false.</param>
  4361. </member>
  4362. <member name="T:System.Web.Mvc.NameValueCollectionValueProvider">
  4363. <summary>Represents the base class for value providers whose values come from a <see cref="T:System.Collections.Specialized.NameValueCollection" /> object.</summary>
  4364. </member>
  4365. <member name="M:System.Web.Mvc.NameValueCollectionValueProvider.#ctor(System.Collections.Specialized.NameValueCollection,System.Collections.Specialized.NameValueCollection,System.Globalization.CultureInfo)">
  4366. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.NameValueCollectionValueProvider" /> class using the specified unvalidated collection.</summary>
  4367. <param name="collection">A collection that contains the values that are used to initialize the provider.</param>
  4368. <param name="unvalidatedCollection">A collection that contains the values that are used to initialize the provider. This collection will not be validated.</param>
  4369. <param name="culture">An object that contains information about the target culture.</param>
  4370. </member>
  4371. <member name="M:System.Web.Mvc.NameValueCollectionValueProvider.#ctor(System.Collections.Specialized.NameValueCollection,System.Globalization.CultureInfo)">
  4372. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.NameValueCollectionValueProvider" /> class.</summary>
  4373. <param name="collection">A collection that contains the values that are used to initialize the provider.</param>
  4374. <param name="culture">An object that contains information about the target culture.</param>
  4375. <exception cref="T:System.ArgumentNullException">The <paramref name="collection" /> parameter is null.</exception>
  4376. </member>
  4377. <member name="M:System.Web.Mvc.NameValueCollectionValueProvider.ContainsPrefix(System.String)">
  4378. <summary>Determines whether the collection contains the specified prefix.</summary>
  4379. <returns>true if the collection contains the specified prefix; otherwise, false.</returns>
  4380. <param name="prefix">The prefix to search for.</param>
  4381. <exception cref="T:System.ArgumentNullException">The <paramref name="prefix" /> parameter is null.</exception>
  4382. </member>
  4383. <member name="M:System.Web.Mvc.NameValueCollectionValueProvider.GetValue(System.String)">
  4384. <summary>Returns a value object using the specified key.</summary>
  4385. <returns>The value object for the specified key.</returns>
  4386. <param name="key">The key of the value object to retrieve.</param>
  4387. <exception cref="T:System.ArgumentNullException">The <paramref name="key" /> parameter is null.</exception>
  4388. </member>
  4389. <member name="M:System.Web.Mvc.NameValueCollectionValueProvider.GetValue(System.String,System.Boolean)">
  4390. <summary>Returns a value object using the specified key and validation directive.</summary>
  4391. <returns>The value object for the specified key.</returns>
  4392. <param name="key">The key.</param>
  4393. <param name="skipValidation">true if validation should be skipped; otherwise, false.</param>
  4394. </member>
  4395. <member name="T:System.Web.Mvc.NoAsyncTimeoutAttribute">
  4396. <summary>Provides a convenience wrapper for the <see cref="T:System.Web.Mvc.AsyncTimeoutAttribute" /> attribute.</summary>
  4397. </member>
  4398. <member name="M:System.Web.Mvc.NoAsyncTimeoutAttribute.#ctor">
  4399. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.NoAsyncTimeoutAttribute" /> class.</summary>
  4400. </member>
  4401. <member name="T:System.Web.Mvc.NonActionAttribute">
  4402. <summary>Represents an attribute that is used to indicate that a controller method is not an action method.</summary>
  4403. </member>
  4404. <member name="M:System.Web.Mvc.NonActionAttribute.#ctor">
  4405. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.NonActionAttribute" /> class.</summary>
  4406. </member>
  4407. <member name="M:System.Web.Mvc.NonActionAttribute.IsValidForRequest(System.Web.Mvc.ControllerContext,System.Reflection.MethodInfo)">
  4408. <summary>Determines whether the attribute marks a method that is not an action method by using the specified controller context.</summary>
  4409. <returns>true if the attribute marks a valid non-action method; otherwise, false.</returns>
  4410. <param name="controllerContext">The controller context.</param>
  4411. <param name="methodInfo">The method information.</param>
  4412. </member>
  4413. <member name="T:System.Web.Mvc.OutputCacheAttribute">
  4414. <summary>Represents an attribute that is used to mark an action method whose output will be cached.</summary>
  4415. </member>
  4416. <member name="M:System.Web.Mvc.OutputCacheAttribute.#ctor">
  4417. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.OutputCacheAttribute" /> class.</summary>
  4418. </member>
  4419. <member name="P:System.Web.Mvc.OutputCacheAttribute.CacheProfile">
  4420. <summary>Gets or sets the cache profile name.</summary>
  4421. <returns>The cache profile name.</returns>
  4422. </member>
  4423. <member name="P:System.Web.Mvc.OutputCacheAttribute.ChildActionCache">
  4424. <summary>Gets or sets the child action cache.</summary>
  4425. <returns>The child action cache.</returns>
  4426. </member>
  4427. <member name="P:System.Web.Mvc.OutputCacheAttribute.Duration">
  4428. <summary>Gets or sets the cache duration, in seconds.</summary>
  4429. <returns>The cache duration.</returns>
  4430. </member>
  4431. <member name="M:System.Web.Mvc.OutputCacheAttribute.IsChildActionCacheActive(System.Web.Mvc.ControllerContext)">
  4432. <summary>Returns a value that indicates whether a child action cache is active.</summary>
  4433. <returns>true if the child action cache is active; otherwise, false.</returns>
  4434. <param name="controllerContext">The controller context.</param>
  4435. </member>
  4436. <member name="P:System.Web.Mvc.OutputCacheAttribute.Location">
  4437. <summary>Gets or sets the location.</summary>
  4438. <returns>The location.</returns>
  4439. </member>
  4440. <member name="P:System.Web.Mvc.OutputCacheAttribute.NoStore">
  4441. <summary>Gets or sets a value that indicates whether to store the cache.</summary>
  4442. <returns>true if the cache should be stored; otherwise, false.</returns>
  4443. </member>
  4444. <member name="M:System.Web.Mvc.OutputCacheAttribute.OnActionExecuted(System.Web.Mvc.ActionExecutedContext)">
  4445. <summary>This method is an implementation of <see cref="M:System.Web.Mvc.IActionFilter.OnActionExecuted(System.Web.Mvc.ActionExecutedContext)" /> and supports the ASP.NET MVC infrastructure. It is not intended to be used directly from your code. </summary>
  4446. <param name="filterContext">The filter context.</param>
  4447. </member>
  4448. <member name="M:System.Web.Mvc.OutputCacheAttribute.OnActionExecuting(System.Web.Mvc.ActionExecutingContext)">
  4449. <summary>This method is an implementation of <see cref="M:System.Web.Mvc.IActionFilter.OnActionExecuting(System.Web.Mvc.ActionExecutingContext)" /> and supports the ASP.NET MVC infrastructure. It is not intended to be used directly from your code.</summary>
  4450. <param name="filterContext">The filter context.</param>
  4451. </member>
  4452. <member name="M:System.Web.Mvc.OutputCacheAttribute.OnException(System.Web.Mvc.ExceptionContext)">
  4453. <summary>This method is an implementation of <see cref="M:System.Web.Mvc.IExceptionFilter.OnException(System.Web.Mvc.ExceptionContext)" /> and supports the ASP.NET MVC infrastructure. It is not intended to be used directly from your code.</summary>
  4454. <param name="filterContext">The filter context.</param>
  4455. </member>
  4456. <member name="M:System.Web.Mvc.OutputCacheAttribute.OnResultExecuted(System.Web.Mvc.ResultExecutedContext)">
  4457. <summary>This method is an implementation of <see cref="M:System.Web.Mvc.IResultFilter.OnResultExecuted(System.Web.Mvc.ResultExecutedContext)" /> and supports the ASP.NET MVC infrastructure. It is not intended to be used directly from your code.</summary>
  4458. <param name="filterContext">The filter context.</param>
  4459. </member>
  4460. <member name="M:System.Web.Mvc.OutputCacheAttribute.OnResultExecuting(System.Web.Mvc.ResultExecutingContext)">
  4461. <summary>Called before the action result executes.</summary>
  4462. <param name="filterContext">The filter context, which encapsulates information for using <see cref="T:System.Web.Mvc.AuthorizeAttribute" />.</param>
  4463. <exception cref="T:System.ArgumentNullException">The <paramref name="filterContext" /> parameter is null.</exception>
  4464. </member>
  4465. <member name="P:System.Web.Mvc.OutputCacheAttribute.SqlDependency">
  4466. <summary>Gets or sets the SQL dependency.</summary>
  4467. <returns>The SQL dependency.</returns>
  4468. </member>
  4469. <member name="P:System.Web.Mvc.OutputCacheAttribute.VaryByContentEncoding">
  4470. <summary>Gets or sets the vary-by-content encoding.</summary>
  4471. <returns>The vary-by-content encoding.</returns>
  4472. </member>
  4473. <member name="P:System.Web.Mvc.OutputCacheAttribute.VaryByCustom">
  4474. <summary>Gets or sets the vary-by-custom value.</summary>
  4475. <returns>The vary-by-custom value.</returns>
  4476. </member>
  4477. <member name="P:System.Web.Mvc.OutputCacheAttribute.VaryByHeader">
  4478. <summary>Gets or sets the vary-by-header value.</summary>
  4479. <returns>The vary-by-header value.</returns>
  4480. </member>
  4481. <member name="P:System.Web.Mvc.OutputCacheAttribute.VaryByParam">
  4482. <summary>Gets or sets the vary-by-param value.</summary>
  4483. <returns>The vary-by-param value.</returns>
  4484. </member>
  4485. <member name="T:System.Web.Mvc.ParameterBindingInfo">
  4486. <summary>Encapsulates information for binding action-method parameters to a data model.</summary>
  4487. </member>
  4488. <member name="M:System.Web.Mvc.ParameterBindingInfo.#ctor">
  4489. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ParameterBindingInfo" /> class.</summary>
  4490. </member>
  4491. <member name="P:System.Web.Mvc.ParameterBindingInfo.Binder">
  4492. <summary>Gets the model binder.</summary>
  4493. <returns>The model binder.</returns>
  4494. </member>
  4495. <member name="P:System.Web.Mvc.ParameterBindingInfo.Exclude">
  4496. <summary>Gets a comma-delimited list of property names for which binding is disabled.</summary>
  4497. <returns>The exclude list.</returns>
  4498. </member>
  4499. <member name="P:System.Web.Mvc.ParameterBindingInfo.Include">
  4500. <summary>Gets a comma-delimited list of property names for which binding is enabled.</summary>
  4501. <returns>The include list.</returns>
  4502. </member>
  4503. <member name="P:System.Web.Mvc.ParameterBindingInfo.Prefix">
  4504. <summary>Gets the prefix to use when the MVC framework binds a value to an action parameter or to a model property.</summary>
  4505. <returns>The prefix.</returns>
  4506. </member>
  4507. <member name="T:System.Web.Mvc.ParameterDescriptor">
  4508. <summary>Contains information that describes a parameter.</summary>
  4509. </member>
  4510. <member name="M:System.Web.Mvc.ParameterDescriptor.#ctor">
  4511. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ParameterDescriptor" /> class.</summary>
  4512. </member>
  4513. <member name="P:System.Web.Mvc.ParameterDescriptor.ActionDescriptor">
  4514. <summary>Gets the action descriptor.</summary>
  4515. <returns>The action descriptor.</returns>
  4516. </member>
  4517. <member name="P:System.Web.Mvc.ParameterDescriptor.BindingInfo">
  4518. <summary>Gets the binding information.</summary>
  4519. <returns>The binding information.</returns>
  4520. </member>
  4521. <member name="P:System.Web.Mvc.ParameterDescriptor.DefaultValue">
  4522. <summary>Gets the default value of the parameter.</summary>
  4523. <returns>The default value of the parameter.</returns>
  4524. </member>
  4525. <member name="M:System.Web.Mvc.ParameterDescriptor.GetCustomAttributes(System.Boolean)">
  4526. <summary>Returns an array of custom attributes that are defined for this member, excluding named attributes.</summary>
  4527. <returns>An array of custom attributes, or an empty array if no custom attributes exist.</returns>
  4528. <param name="inherit">true to look up the hierarchy chain for the inherited custom attribute; otherwise, false.</param>
  4529. <exception cref="T:System.TypeLoadException">The custom attribute type cannot be loaded.</exception>
  4530. <exception cref="T:System.Reflection.AmbiguousMatchException">There is more than one attribute of type <paramref name="attributeType" /> defined for this member.</exception>
  4531. </member>
  4532. <member name="M:System.Web.Mvc.ParameterDescriptor.GetCustomAttributes(System.Type,System.Boolean)">
  4533. <summary>Returns an array of custom attributes that are defined for this member, identified by type.</summary>
  4534. <returns>An array of custom attributes, or an empty array if no custom attributes exist.</returns>
  4535. <param name="attributeType">The type of the custom attributes.</param>
  4536. <param name="inherit">true to look up the hierarchy chain for the inherited custom attribute; otherwise, false.</param>
  4537. <exception cref="T:System.TypeLoadException">The custom attribute type cannot be loaded.</exception>
  4538. <exception cref="T:System.Reflection.AmbiguousMatchException">There is more than one attribute of type <paramref name="attributeType" /> defined for this member.</exception>
  4539. <exception cref="T:System.ArgumentNullException">The <paramref name="attributeType" /> parameter is null.</exception>
  4540. </member>
  4541. <member name="M:System.Web.Mvc.ParameterDescriptor.IsDefined(System.Type,System.Boolean)">
  4542. <summary>Indicates whether one or more instances of a custom attribute type are defined for this member.</summary>
  4543. <returns>true if the custom attribute type is defined for this member; otherwise, false.</returns>
  4544. <param name="attributeType">The type of the custom attributes.</param>
  4545. <param name="inherit">true to look up the hierarchy chain for the inherited custom attribute; otherwise, false.</param>
  4546. <exception cref="T:System.ArgumentNullException">The <paramref name="attributeType" /> parameter is null.</exception>
  4547. </member>
  4548. <member name="P:System.Web.Mvc.ParameterDescriptor.ParameterName">
  4549. <summary>Gets the name of the parameter.</summary>
  4550. <returns>The name of the parameter.</returns>
  4551. </member>
  4552. <member name="P:System.Web.Mvc.ParameterDescriptor.ParameterType">
  4553. <summary>Gets the type of the parameter.</summary>
  4554. <returns>The type of the parameter.</returns>
  4555. </member>
  4556. <member name="T:System.Web.Mvc.PartialViewResult">
  4557. <summary>Represents a base class that is used to send a partial view to the response.</summary>
  4558. </member>
  4559. <member name="M:System.Web.Mvc.PartialViewResult.#ctor">
  4560. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.PartialViewResult" /> class.</summary>
  4561. </member>
  4562. <member name="M:System.Web.Mvc.PartialViewResult.FindView(System.Web.Mvc.ControllerContext)">
  4563. <summary>Returns the <see cref="T:System.Web.Mvc.ViewEngineResult" /> object that is used to render the view.</summary>
  4564. <returns>The view engine result.</returns>
  4565. <param name="context">The controller context.</param>
  4566. <exception cref="T:System.InvalidOperationException">An error occurred while the method was attempting to find the view.</exception>
  4567. </member>
  4568. <member name="T:System.Web.Mvc.PreApplicationStartCode">
  4569. <summary>Provides a registration point for ASP.NET Razor pre-application start code.</summary>
  4570. </member>
  4571. <member name="M:System.Web.Mvc.PreApplicationStartCode.Start">
  4572. <summary>Registers Razor pre-application start code.</summary>
  4573. </member>
  4574. <member name="T:System.Web.Mvc.QueryStringValueProvider">
  4575. <summary>Represents a value provider for query strings that are contained in a <see cref="T:System.Collections.Specialized.NameValueCollection" /> object.</summary>
  4576. </member>
  4577. <member name="M:System.Web.Mvc.QueryStringValueProvider.#ctor(System.Web.Mvc.ControllerContext)">
  4578. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.QueryStringValueProvider" /> class.</summary>
  4579. <param name="controllerContext">An object that encapsulates information about the current HTTP request.</param>
  4580. </member>
  4581. <member name="T:System.Web.Mvc.QueryStringValueProviderFactory">
  4582. <summary>Represents a class that is responsible for creating a new instance of a query-string value-provider object.</summary>
  4583. </member>
  4584. <member name="M:System.Web.Mvc.QueryStringValueProviderFactory.#ctor">
  4585. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.QueryStringValueProviderFactory" /> class.</summary>
  4586. </member>
  4587. <member name="M:System.Web.Mvc.QueryStringValueProviderFactory.GetValueProvider(System.Web.Mvc.ControllerContext)">
  4588. <summary>Returns a value-provider object for the specified controller context.</summary>
  4589. <returns>A query-string value-provider object.</returns>
  4590. <param name="controllerContext">An object that encapsulates information about the current HTTP request.</param>
  4591. <exception cref="T:System.ArgumentNullException">The <paramref name="controllerContext" /> parameter is null.</exception>
  4592. </member>
  4593. <member name="T:System.Web.Mvc.RangeAttributeAdapter">
  4594. <summary>Provides an adapter for the <see cref="T:System.ComponentModel.DataAnnotations.RangeAttribute" /> attribute.</summary>
  4595. </member>
  4596. <member name="M:System.Web.Mvc.RangeAttributeAdapter.#ctor(System.Web.Mvc.ModelMetadata,System.Web.Mvc.ControllerContext,System.ComponentModel.DataAnnotations.RangeAttribute)">
  4597. <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.DataAnnotations.RangeAttribute" /> class.</summary>
  4598. <param name="metadata">The model metadata.</param>
  4599. <param name="context">The controller context.</param>
  4600. <param name="attribute">The range attribute.</param>
  4601. </member>
  4602. <member name="M:System.Web.Mvc.RangeAttributeAdapter.GetClientValidationRules">
  4603. <summary>Gets a list of client validation rules for a range check.</summary>
  4604. <returns>A list of client validation rules for a range check.</returns>
  4605. </member>
  4606. <member name="T:System.Web.Mvc.RazorView">
  4607. <summary>Represents the class used to create views that have Razor syntax.</summary>
  4608. </member>
  4609. <member name="M:System.Web.Mvc.RazorView.#ctor(System.Web.Mvc.ControllerContext,System.String,System.String,System.Boolean,System.Collections.Generic.IEnumerable{System.String})">
  4610. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.RazorView" /> class.</summary>
  4611. <param name="controllerContext">The controller context.</param>
  4612. <param name="viewPath">The view path.</param>
  4613. <param name="layoutPath">The layout or master page.</param>
  4614. <param name="runViewStartPages">A value that indicates whether view start files should be executed before the view.</param>
  4615. <param name="viewStartFileExtensions">The set of extensions that will be used when looking up view start files.</param>
  4616. </member>
  4617. <member name="M:System.Web.Mvc.RazorView.#ctor(System.Web.Mvc.ControllerContext,System.String,System.String,System.Boolean,System.Collections.Generic.IEnumerable{System.String},System.Web.Mvc.IViewPageActivator)">
  4618. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.RazorView" /> class using the view page activator.</summary>
  4619. <param name="controllerContext">The controller context.</param>
  4620. <param name="viewPath">The view path.</param>
  4621. <param name="layoutPath">The layout or master page.</param>
  4622. <param name="runViewStartPages">A value that indicates whether view start files should be executed before the view.</param>
  4623. <param name="viewStartFileExtensions">The set of extensions that will be used when looking up view start files.</param>
  4624. <param name="viewPageActivator">The view page activator.</param>
  4625. </member>
  4626. <member name="P:System.Web.Mvc.RazorView.LayoutPath">
  4627. <summary>Gets the layout or master page.</summary>
  4628. <returns>The layout or master page.</returns>
  4629. </member>
  4630. <member name="M:System.Web.Mvc.RazorView.RenderView(System.Web.Mvc.ViewContext,System.IO.TextWriter,System.Object)">
  4631. <summary>Renders the specified view context by using the specified writer and <see cref="T:System.Web.Mvc.WebViewPage" /> instance.</summary>
  4632. <param name="viewContext">The view context.</param>
  4633. <param name="writer">The writer that is used to render the view to the response.</param>
  4634. <param name="instance">The <see cref="T:System.Web.Mvc.WebViewPage" /> instance.</param>
  4635. </member>
  4636. <member name="P:System.Web.Mvc.RazorView.RunViewStartPages">
  4637. <summary>Gets a value that indicates whether view start files should be executed before the view.</summary>
  4638. <returns>A value that indicates whether view start files should be executed before the view.</returns>
  4639. </member>
  4640. <member name="P:System.Web.Mvc.RazorView.ViewStartFileExtensions">
  4641. <summary>Gets or sets the set of file extensions that will be used when looking up view start files.</summary>
  4642. <returns>The set of file extensions that will be used when looking up view start files.</returns>
  4643. </member>
  4644. <member name="T:System.Web.Mvc.RazorViewEngine">
  4645. <summary>Represents a view engine that is used to render a Web page that uses the ASP.NET Razor syntax.</summary>
  4646. </member>
  4647. <member name="M:System.Web.Mvc.RazorViewEngine.#ctor">
  4648. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.RazorViewEngine" /> class.</summary>
  4649. </member>
  4650. <member name="M:System.Web.Mvc.RazorViewEngine.#ctor(System.Web.Mvc.IViewPageActivator)"></member>
  4651. <member name="M:System.Web.Mvc.RazorViewEngine.CreatePartialView(System.Web.Mvc.ControllerContext,System.String)">
  4652. <summary>Creates a partial view using the specified controller context and partial path.</summary>
  4653. <returns>The partial view.</returns>
  4654. <param name="controllerContext">The controller context.</param>
  4655. <param name="partialPath">The path to the partial view.</param>
  4656. </member>
  4657. <member name="M:System.Web.Mvc.RazorViewEngine.CreateView(System.Web.Mvc.ControllerContext,System.String,System.String)">
  4658. <summary>Creates a view by using the specified controller context and the paths of the view and master view.</summary>
  4659. <returns>The view.</returns>
  4660. <param name="controllerContext">The controller context.</param>
  4661. <param name="viewPath">The path to the view.</param>
  4662. <param name="masterPath">The path to the master view.</param>
  4663. </member>
  4664. <member name="T:System.Web.Mvc.RedirectResult">
  4665. <summary>Controls the processing of application actions by redirecting to a specified URI.</summary>
  4666. </member>
  4667. <member name="M:System.Web.Mvc.RedirectResult.#ctor(System.String)">
  4668. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.RedirectResult" /> class.</summary>
  4669. <param name="url">The target URL.</param>
  4670. <exception cref="T:System.ArgumentNullException">The <paramref name="url" /> parameter is null.</exception>
  4671. </member>
  4672. <member name="M:System.Web.Mvc.RedirectResult.#ctor(System.String,System.Boolean)">
  4673. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.RedirectResult" /> class using the specified URL and permanent-redirection flag.</summary>
  4674. <param name="url">The URL.</param>
  4675. <param name="permanent">A value that indicates whether the redirection should be permanent.</param>
  4676. </member>
  4677. <member name="M:System.Web.Mvc.RedirectResult.ExecuteResult(System.Web.Mvc.ControllerContext)">
  4678. <summary>Enables processing of the result of an action method by a custom type that inherits from the <see cref="T:System.Web.Mvc.ActionResult" /> class.</summary>
  4679. <param name="context">The context within which the result is executed.</param>
  4680. <exception cref="T:System.ArgumentNullException">The <paramref name="context" /> parameter is null.</exception>
  4681. </member>
  4682. <member name="P:System.Web.Mvc.RedirectResult.Permanent">
  4683. <summary>Gets a value that indicates whether the redirection should be permanent.</summary>
  4684. <returns>true if the redirection should be permanent; otherwise, false.</returns>
  4685. </member>
  4686. <member name="P:System.Web.Mvc.RedirectResult.Url">
  4687. <summary>Gets or sets the target URL.</summary>
  4688. <returns>The target URL.</returns>
  4689. </member>
  4690. <member name="T:System.Web.Mvc.RedirectToRouteResult">
  4691. <summary>Represents a result that performs a redirection by using the specified route values dictionary.</summary>
  4692. </member>
  4693. <member name="M:System.Web.Mvc.RedirectToRouteResult.#ctor(System.String,System.Web.Routing.RouteValueDictionary)">
  4694. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.RedirectToRouteResult" /> class by using the specified route name and route values.</summary>
  4695. <param name="routeName">The name of the route.</param>
  4696. <param name="routeValues">The route values.</param>
  4697. </member>
  4698. <member name="M:System.Web.Mvc.RedirectToRouteResult.#ctor(System.String,System.Web.Routing.RouteValueDictionary,System.Boolean)">
  4699. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.RedirectToRouteResult" /> class by using the specified route name, route values, and permanent-redirection flag.</summary>
  4700. <param name="routeName">The name of the route.</param>
  4701. <param name="routeValues">The route values.</param>
  4702. <param name="permanent">A value that indicates whether the redirection should be permanent.</param>
  4703. </member>
  4704. <member name="M:System.Web.Mvc.RedirectToRouteResult.#ctor(System.Web.Routing.RouteValueDictionary)">
  4705. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.RedirectToRouteResult" /> class by using the specified route values.</summary>
  4706. <param name="routeValues">The route values.</param>
  4707. </member>
  4708. <member name="M:System.Web.Mvc.RedirectToRouteResult.ExecuteResult(System.Web.Mvc.ControllerContext)">
  4709. <summary>Enables processing of the result of an action method by a custom type that inherits from the <see cref="T:System.Web.Mvc.ActionResult" /> class.</summary>
  4710. <param name="context">The context within which the result is executed.</param>
  4711. <exception cref="T:System.ArgumentNullException">The <paramref name="context" /> parameter is null.</exception>
  4712. </member>
  4713. <member name="P:System.Web.Mvc.RedirectToRouteResult.Permanent">
  4714. <summary>Gets a value that indicates whether the redirection should be permanent.</summary>
  4715. <returns>true if the redirection should be permanent; otherwise, false.</returns>
  4716. </member>
  4717. <member name="P:System.Web.Mvc.RedirectToRouteResult.RouteName">
  4718. <summary>Gets or sets the name of the route.</summary>
  4719. <returns>The name of the route.</returns>
  4720. </member>
  4721. <member name="P:System.Web.Mvc.RedirectToRouteResult.RouteValues">
  4722. <summary>Gets or sets the route values.</summary>
  4723. <returns>The route values.</returns>
  4724. </member>
  4725. <member name="T:System.Web.Mvc.ReflectedActionDescriptor">
  4726. <summary>Contains information that describes a reflected action method.</summary>
  4727. </member>
  4728. <member name="M:System.Web.Mvc.ReflectedActionDescriptor.#ctor(System.Reflection.MethodInfo,System.String,System.Web.Mvc.ControllerDescriptor)">
  4729. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ReflectedActionDescriptor" /> class.</summary>
  4730. <param name="methodInfo">The action-method information.</param>
  4731. <param name="actionName">The name of the action.</param>
  4732. <param name="controllerDescriptor">The controller descriptor.</param>
  4733. <exception cref="T:System.ArgumentNullException">Either the <paramref name="methodInfo" /> or <paramref name="controllerDescriptor" /> parameter is null.</exception>
  4734. <exception cref="T:System.ArgumentException">The <paramref name="actionName" /> parameter is null or empty.</exception>
  4735. </member>
  4736. <member name="P:System.Web.Mvc.ReflectedActionDescriptor.ActionName">
  4737. <summary>Gets the name of the action.</summary>
  4738. <returns>The name of the action.</returns>
  4739. </member>
  4740. <member name="P:System.Web.Mvc.ReflectedActionDescriptor.ControllerDescriptor">
  4741. <summary>Gets the controller descriptor.</summary>
  4742. <returns>The controller descriptor.</returns>
  4743. </member>
  4744. <member name="M:System.Web.Mvc.ReflectedActionDescriptor.Execute(System.Web.Mvc.ControllerContext,System.Collections.Generic.IDictionary{System.String,System.Object})">
  4745. <summary>Executes the specified controller context by using the specified action-method parameters.</summary>
  4746. <returns>The action return value.</returns>
  4747. <param name="controllerContext">The controller context.</param>
  4748. <param name="parameters">The parameters.</param>
  4749. <exception cref="T:System.ArgumentNullException">The <paramref name="parameters" /> or <paramref name="controllerContext" /> parameter is null.</exception>
  4750. </member>
  4751. <member name="M:System.Web.Mvc.ReflectedActionDescriptor.GetCustomAttributes(System.Boolean)">
  4752. <summary>Returns an array of custom attributes defined for this member, excluding named attributes.</summary>
  4753. <returns>An array of custom attributes, or an empty array if no custom attributes exist.</returns>
  4754. <param name="inherit">true to look up the hierarchy chain for the inherited custom attribute; otherwise, false.</param>
  4755. <exception cref="T:System.TypeLoadException">The custom attribute type cannot be loaded.</exception>
  4756. <exception cref="T:System.Reflection.AmbiguousMatchException">There is more than one attribute of type <paramref name="attributeType" /> defined for this member.</exception>
  4757. </member>
  4758. <member name="M:System.Web.Mvc.ReflectedActionDescriptor.GetCustomAttributes(System.Type,System.Boolean)">
  4759. <summary>Returns an array of custom attributes defined for this member, identified by type.</summary>
  4760. <returns>An array of custom attributes, or an empty array if no custom attributes exist.</returns>
  4761. <param name="attributeType">The type of the custom attributes.</param>
  4762. <param name="inherit">true to look up the hierarchy chain for the inherited custom attribute; otherwise, false.</param>
  4763. <exception cref="T:System.TypeLoadException">The custom attribute type cannot be loaded.</exception>
  4764. <exception cref="T:System.Reflection.AmbiguousMatchException">There is more than one attribute of type <paramref name="attributeType" /> defined for this member.</exception>
  4765. </member>
  4766. <member name="M:System.Web.Mvc.ReflectedActionDescriptor.GetParameters">
  4767. <summary>Retrieves the parameters of the action method.</summary>
  4768. <returns>The parameters of the action method.</returns>
  4769. </member>
  4770. <member name="M:System.Web.Mvc.ReflectedActionDescriptor.GetSelectors">
  4771. <summary>Retrieves the action selectors.</summary>
  4772. <returns>The action selectors.</returns>
  4773. </member>
  4774. <member name="M:System.Web.Mvc.ReflectedActionDescriptor.IsDefined(System.Type,System.Boolean)">
  4775. <summary>Indicates whether one or more instances of a custom attribute type are defined for this member.</summary>
  4776. <returns>true if the custom attribute type is defined for this member; otherwise, false.</returns>
  4777. <param name="attributeType">The type of the custom attributes.</param>
  4778. <param name="inherit">true to look up the hierarchy chain for the inherited custom attribute; otherwise, false.</param>
  4779. </member>
  4780. <member name="P:System.Web.Mvc.ReflectedActionDescriptor.MethodInfo">
  4781. <summary>Gets or sets the action-method information.</summary>
  4782. <returns>The action-method information.</returns>
  4783. </member>
  4784. <member name="P:System.Web.Mvc.ReflectedActionDescriptor.UniqueId">
  4785. <summary>Gets the unique ID for the reflected action descriptor using lazy initialization.</summary>
  4786. <returns>The unique ID.</returns>
  4787. </member>
  4788. <member name="T:System.Web.Mvc.ReflectedControllerDescriptor">
  4789. <summary>Contains information that describes a reflected controller.</summary>
  4790. </member>
  4791. <member name="M:System.Web.Mvc.ReflectedControllerDescriptor.#ctor(System.Type)">
  4792. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ReflectedControllerDescriptor" /> class.</summary>
  4793. <param name="controllerType">The type of the controller.</param>
  4794. <exception cref="T:System.ArgumentNullException">The <paramref name="controllerType" /> parameter is null.</exception>
  4795. </member>
  4796. <member name="P:System.Web.Mvc.ReflectedControllerDescriptor.ControllerType">
  4797. <summary>Gets the type of the controller.</summary>
  4798. <returns>The type of the controller.</returns>
  4799. </member>
  4800. <member name="M:System.Web.Mvc.ReflectedControllerDescriptor.FindAction(System.Web.Mvc.ControllerContext,System.String)">
  4801. <summary>Finds the specified action for the specified controller context.</summary>
  4802. <returns>The information about the action.</returns>
  4803. <param name="controllerContext">The controller context.</param>
  4804. <param name="actionName">The name of the action.</param>
  4805. <exception cref="T:System.ArgumentNullException">The <paramref name="controllerContext" /> parameter is null.</exception>
  4806. <exception cref="T:System.ArgumentException">The <paramref name="actionName" /> parameter is null or empty.</exception>
  4807. </member>
  4808. <member name="M:System.Web.Mvc.ReflectedControllerDescriptor.GetCanonicalActions">
  4809. <summary>Returns the list of actions for the controller.</summary>
  4810. <returns>A list of action descriptors for the controller.</returns>
  4811. </member>
  4812. <member name="M:System.Web.Mvc.ReflectedControllerDescriptor.GetCustomAttributes(System.Boolean)">
  4813. <summary>Returns an array of custom attributes that are defined for this member, excluding named attributes.</summary>
  4814. <returns>An array of custom attributes, or an empty array if no custom attributes exist.</returns>
  4815. <param name="inherit">true to look up the hierarchy chain for the inherited custom attribute; otherwise, false.</param>
  4816. <exception cref="T:System.TypeLoadException">The custom attribute type cannot be loaded.</exception>
  4817. <exception cref="T:System.Reflection.AmbiguousMatchException">There is more than one attribute of type <paramref name="attributeType" /> defined for this member.</exception>
  4818. </member>
  4819. <member name="M:System.Web.Mvc.ReflectedControllerDescriptor.GetCustomAttributes(System.Type,System.Boolean)">
  4820. <summary>Returns an array of custom attributes that are defined for this member, identified by type.</summary>
  4821. <returns>An array of custom attributes, or an empty array if no custom attributes exist.</returns>
  4822. <param name="attributeType">The type of the custom attributes.</param>
  4823. <param name="inherit">true to look up the hierarchy chain for the inherited custom attribute; otherwise, false.</param>
  4824. <exception cref="T:System.TypeLoadException">The custom attribute type cannot be loaded.</exception>
  4825. <exception cref="T:System.Reflection.AmbiguousMatchException">There is more than one attribute of type <paramref name="attributeType" /> defined for this member.</exception>
  4826. </member>
  4827. <member name="M:System.Web.Mvc.ReflectedControllerDescriptor.IsDefined(System.Type,System.Boolean)">
  4828. <summary>Returns a value that indicates whether one or more instances of a custom attribute type are defined for this member.</summary>
  4829. <returns>true if the custom attribute type is defined for this member; otherwise, false.</returns>
  4830. <param name="attributeType">The type of the custom attributes.</param>
  4831. <param name="inherit">true to look up the hierarchy chain for the inherited custom attribute; otherwise, false.</param>
  4832. </member>
  4833. <member name="T:System.Web.Mvc.ReflectedParameterDescriptor">
  4834. <summary>Contains information that describes a reflected action-method parameter.</summary>
  4835. </member>
  4836. <member name="M:System.Web.Mvc.ReflectedParameterDescriptor.#ctor(System.Reflection.ParameterInfo,System.Web.Mvc.ActionDescriptor)">
  4837. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ReflectedParameterDescriptor" /> class.</summary>
  4838. <param name="parameterInfo">The parameter information.</param>
  4839. <param name="actionDescriptor">The action descriptor.</param>
  4840. <exception cref="T:System.ArgumentNullException">The <paramref name="parameterInfo" /> or <paramref name="actionDescriptor" /> parameter is null.</exception>
  4841. </member>
  4842. <member name="P:System.Web.Mvc.ReflectedParameterDescriptor.ActionDescriptor">
  4843. <summary>Gets the action descriptor.</summary>
  4844. <returns>The action descriptor.</returns>
  4845. </member>
  4846. <member name="P:System.Web.Mvc.ReflectedParameterDescriptor.BindingInfo">
  4847. <summary>Gets the binding information.</summary>
  4848. <returns>The binding information.</returns>
  4849. </member>
  4850. <member name="P:System.Web.Mvc.ReflectedParameterDescriptor.DefaultValue">
  4851. <summary>Gets the default value of the reflected parameter.</summary>
  4852. <returns>The default value of the reflected parameter.</returns>
  4853. </member>
  4854. <member name="M:System.Web.Mvc.ReflectedParameterDescriptor.GetCustomAttributes(System.Boolean)">
  4855. <summary>Returns an array of custom attributes that are defined for this member, excluding named attributes.</summary>
  4856. <returns>An array of custom attributes, or an empty array if no custom attributes exist.</returns>
  4857. <param name="inherit">true to look up the hierarchy chain for the inherited custom attribute; otherwise, false.</param>
  4858. <exception cref="T:System.TypeLoadException">The custom attribute type cannot be loaded.</exception>
  4859. <exception cref="T:System.Reflection.AmbiguousMatchException">There is more than one attribute of type <paramref name="attributeType" /> defined for this member.</exception>
  4860. </member>
  4861. <member name="M:System.Web.Mvc.ReflectedParameterDescriptor.GetCustomAttributes(System.Type,System.Boolean)">
  4862. <summary>Returns an array of custom attributes that are defined for this member, identified by type.</summary>
  4863. <returns>An array of custom attributes, or an empty array if no custom attributes exist.</returns>
  4864. <param name="attributeType">The type of the custom attributes.</param>
  4865. <param name="inherit">true to look up the hierarchy chain for the inherited custom attribute; otherwise, false.</param>
  4866. <exception cref="T:System.TypeLoadException">The custom attribute type cannot be loaded.</exception>
  4867. <exception cref="T:System.Reflection.AmbiguousMatchException">There is more than one attribute of type <paramref name="attributeType" /> defined for this member.</exception>
  4868. </member>
  4869. <member name="M:System.Web.Mvc.ReflectedParameterDescriptor.IsDefined(System.Type,System.Boolean)">
  4870. <summary>Returns a value that indicates whether one or more instances of a custom attribute type are defined for this member.</summary>
  4871. <returns>true if the custom attribute type is defined for this member; otherwise, false.</returns>
  4872. <param name="attributeType">The type of the custom attributes.</param>
  4873. <param name="inherit">true to look up the hierarchy chain for the inherited custom attribute; otherwise, false.</param>
  4874. </member>
  4875. <member name="P:System.Web.Mvc.ReflectedParameterDescriptor.ParameterInfo">
  4876. <summary>Gets or sets the parameter information.</summary>
  4877. <returns>The parameter information.</returns>
  4878. </member>
  4879. <member name="P:System.Web.Mvc.ReflectedParameterDescriptor.ParameterName">
  4880. <summary>Gets the name of the parameter.</summary>
  4881. <returns>The name of the parameter.</returns>
  4882. </member>
  4883. <member name="P:System.Web.Mvc.ReflectedParameterDescriptor.ParameterType">
  4884. <summary>Gets the type of the parameter.</summary>
  4885. <returns>The type of the parameter.</returns>
  4886. </member>
  4887. <member name="T:System.Web.Mvc.RegularExpressionAttributeAdapter">
  4888. <summary>Provides an adapter for the <see cref="T:System.ComponentModel.DataAnnotations.RegularExpressionAttribute" /> attribute.</summary>
  4889. </member>
  4890. <member name="M:System.Web.Mvc.RegularExpressionAttributeAdapter.#ctor(System.Web.Mvc.ModelMetadata,System.Web.Mvc.ControllerContext,System.ComponentModel.DataAnnotations.RegularExpressionAttribute)">
  4891. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.RegularExpressionAttributeAdapter" /> class.</summary>
  4892. <param name="metadata">The model metadata.</param>
  4893. <param name="context">The controller context.</param>
  4894. <param name="attribute">The regular expression attribute.</param>
  4895. </member>
  4896. <member name="M:System.Web.Mvc.RegularExpressionAttributeAdapter.GetClientValidationRules">
  4897. <summary>Gets a list of regular-expression client validation rules.</summary>
  4898. <returns>A list of regular-expression client validation rules.</returns>
  4899. </member>
  4900. <member name="T:System.Web.Mvc.RemoteAttribute">
  4901. <summary>Provides an attribute that uses the jQuery validation plug-in remote validator. </summary>
  4902. </member>
  4903. <member name="M:System.Web.Mvc.RemoteAttribute.#ctor">
  4904. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.RemoteAttribute" /> class.</summary>
  4905. </member>
  4906. <member name="M:System.Web.Mvc.RemoteAttribute.#ctor(System.String)">
  4907. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.RemoteAttribute" /> class using the specified route name.</summary>
  4908. <param name="routeName">The route name.</param>
  4909. </member>
  4910. <member name="M:System.Web.Mvc.RemoteAttribute.#ctor(System.String,System.String)">
  4911. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.RemoteAttribute" /> class using the specified action-method name and controller name.</summary>
  4912. <param name="action">The name of the action method.</param>
  4913. <param name="controller">The name of the controller.</param>
  4914. </member>
  4915. <member name="M:System.Web.Mvc.RemoteAttribute.#ctor(System.String,System.String,System.String)">
  4916. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.RemoteAttribute" /> class using the specified action-method name, controller name, and area name.</summary>
  4917. <param name="action">The name of the action method.</param>
  4918. <param name="controller">The name of the controller.</param>
  4919. <param name="areaName">The name of the area.</param>
  4920. </member>
  4921. <member name="P:System.Web.Mvc.RemoteAttribute.Fields">
  4922. <summary>Gets or sets the fields that are required for validation.</summary>
  4923. <returns>The fields required for validation.</returns>
  4924. </member>
  4925. <member name="M:System.Web.Mvc.RemoteAttribute.FormatErrorMessage(System.String)">
  4926. <summary>Formats the error message that is displayed when validation fails.</summary>
  4927. <returns>A formatted error message.</returns>
  4928. <param name="name">A name to display with the error message.</param>
  4929. </member>
  4930. <member name="M:System.Web.Mvc.RemoteAttribute.FormatFieldsForClientValidation(System.String)">
  4931. <summary>Returns a comma-delimited string of validation field names.</summary>
  4932. <returns>A comma-delimited string of validation field names.</returns>
  4933. <param name="property">The name of the validation property.</param>
  4934. </member>
  4935. <member name="M:System.Web.Mvc.RemoteAttribute.FormatPropertyForClientValidation(System.String)">
  4936. <summary>Formats the property for client validation by prepending an asterisk (*) and a dot.</summary>
  4937. <returns>The string "*." Is prepended to the property.</returns>
  4938. <param name="property">The property.</param>
  4939. </member>
  4940. <member name="M:System.Web.Mvc.RemoteAttribute.GetClientValidationRules(System.Web.Mvc.ModelMetadata,System.Web.Mvc.ControllerContext)">
  4941. <summary>Gets a list of client validation rules for the property.</summary>
  4942. <returns>A list of remote client validation rules for the property.</returns>
  4943. <param name="metadata">The model metadata.</param>
  4944. <param name="context">The controller context.</param>
  4945. </member>
  4946. <member name="M:System.Web.Mvc.RemoteAttribute.GetUrl(System.Web.Mvc.ControllerContext)">
  4947. <summary>Gets the URL for the remote validation call.</summary>
  4948. <returns>The URL for the remote validation call.</returns>
  4949. <param name="controllerContext">The controller context.</param>
  4950. </member>
  4951. <member name="P:System.Web.Mvc.RemoteAttribute.HttpMethod">
  4952. <summary>Gets or sets the HTTP method used for remote validation.</summary>
  4953. <returns>The HTTP method used for remote validation. The default value is "Get".</returns>
  4954. </member>
  4955. <member name="M:System.Web.Mvc.RemoteAttribute.IsValid(System.Object)">
  4956. <summary>This method always returns true.</summary>
  4957. <returns>true</returns>
  4958. <param name="value">The validation target.</param>
  4959. </member>
  4960. <member name="P:System.Web.Mvc.RemoteAttribute.RouteData">
  4961. <summary>Gets the route data dictionary.</summary>
  4962. <returns>The route data dictionary.</returns>
  4963. </member>
  4964. <member name="P:System.Web.Mvc.RemoteAttribute.RouteName">
  4965. <summary>Gets or sets the route name.</summary>
  4966. <returns>The route name.</returns>
  4967. </member>
  4968. <member name="P:System.Web.Mvc.RemoteAttribute.Routes">
  4969. <summary>Gets the route collection from the route table.</summary>
  4970. <returns>The route collection from the route table.</returns>
  4971. </member>
  4972. <member name="T:System.Web.Mvc.RequiredAttributeAdapter">
  4973. <summary>Provides an adapter for the <see cref="T:System.Runtime.CompilerServices.RequiredAttributeAttribute" /> attribute.</summary>
  4974. </member>
  4975. <member name="M:System.Web.Mvc.RequiredAttributeAdapter.#ctor(System.Web.Mvc.ModelMetadata,System.Web.Mvc.ControllerContext,System.ComponentModel.DataAnnotations.RequiredAttribute)">
  4976. <summary>Initializes a new instance of the <see cref="T:System.Runtime.CompilerServices.RequiredAttributeAttribute" /> class.</summary>
  4977. <param name="metadata">The model metadata.</param>
  4978. <param name="context">The controller context.</param>
  4979. <param name="attribute">The required attribute.</param>
  4980. </member>
  4981. <member name="M:System.Web.Mvc.RequiredAttributeAdapter.GetClientValidationRules">
  4982. <summary>Gets a list of required-value client validation rules.</summary>
  4983. <returns>A list of required-value client validation rules.</returns>
  4984. </member>
  4985. <member name="T:System.Web.Mvc.RequireHttpsAttribute">
  4986. <summary>Represents an attribute that forces an unsecured HTTP request to be re-sent over HTTPS.</summary>
  4987. </member>
  4988. <member name="M:System.Web.Mvc.RequireHttpsAttribute.#ctor">
  4989. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.RequireHttpsAttribute" /> class.</summary>
  4990. </member>
  4991. <member name="M:System.Web.Mvc.RequireHttpsAttribute.HandleNonHttpsRequest(System.Web.Mvc.AuthorizationContext)">
  4992. <summary>Handles unsecured HTTP requests that are sent to the action method.</summary>
  4993. <param name="filterContext">An object that encapsulates information that is required in order to use the <see cref="T:System.Web.Mvc.RequireHttpsAttribute" /> attribute.</param>
  4994. <exception cref="T:System.InvalidOperationException">The HTTP request contains an invalid transfer method override. All GET requests are considered invalid.</exception>
  4995. </member>
  4996. <member name="M:System.Web.Mvc.RequireHttpsAttribute.OnAuthorization(System.Web.Mvc.AuthorizationContext)">
  4997. <summary>Determines whether a request is secured (HTTPS) and, if it is not, calls the <see cref="M:System.Web.Mvc.RequireHttpsAttribute.HandleNonHttpsRequest(System.Web.Mvc.AuthorizationContext)" /> method.</summary>
  4998. <param name="filterContext">An object that encapsulates information that is required in order to use the <see cref="T:System.Web.Mvc.RequireHttpsAttribute" /> attribute.</param>
  4999. <exception cref="T:System.ArgumentNullException">The <paramref name="filterContext" /> parameter is null.</exception>
  5000. </member>
  5001. <member name="T:System.Web.Mvc.ResultExecutedContext">
  5002. <summary>Provides the context for the <see cref="M:System.Web.Mvc.ActionFilterAttribute.OnResultExecuted(System.Web.Mvc.ResultExecutedContext)" /> method of the <see cref="T:System.Web.Mvc.ActionFilterAttribute" /> class.</summary>
  5003. </member>
  5004. <member name="M:System.Web.Mvc.ResultExecutedContext.#ctor">
  5005. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ResultExecutedContext" /> class.</summary>
  5006. </member>
  5007. <member name="M:System.Web.Mvc.ResultExecutedContext.#ctor(System.Web.Mvc.ControllerContext,System.Web.Mvc.ActionResult,System.Boolean,System.Exception)">
  5008. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ResultExecutedContext" /> class.</summary>
  5009. <param name="controllerContext">The controller context.</param>
  5010. <param name="result">The result object.</param>
  5011. <param name="canceled">true to cancel execution; otherwise, false.</param>
  5012. <param name="exception">The exception object.</param>
  5013. <exception cref="T:System.ArgumentNullException">The <paramref name="result" /> parameter is null.</exception>
  5014. </member>
  5015. <member name="P:System.Web.Mvc.ResultExecutedContext.Canceled">
  5016. <summary>Gets or sets a value that indicates whether this <see cref="T:System.Web.Mvc.ResultExecutedContext" /> instance is canceled.</summary>
  5017. <returns>true if the instance is canceled; otherwise, false.</returns>
  5018. </member>
  5019. <member name="P:System.Web.Mvc.ResultExecutedContext.Exception">
  5020. <summary>Gets or sets the exception object.</summary>
  5021. <returns>The exception object.</returns>
  5022. </member>
  5023. <member name="P:System.Web.Mvc.ResultExecutedContext.ExceptionHandled">
  5024. <summary>Gets or sets a value that indicates whether the exception has been handled.</summary>
  5025. <returns>true if the exception has been handled; otherwise, false.</returns>
  5026. </member>
  5027. <member name="P:System.Web.Mvc.ResultExecutedContext.Result">
  5028. <summary>Gets or sets the action result.</summary>
  5029. <returns>The action result.</returns>
  5030. </member>
  5031. <member name="T:System.Web.Mvc.ResultExecutingContext">
  5032. <summary>Provides the context for the <see cref="M:System.Web.Mvc.ActionFilterAttribute.OnResultExecuting(System.Web.Mvc.ResultExecutingContext)" /> method of the <see cref="T:System.Web.Mvc.ActionFilterAttribute" /> class.</summary>
  5033. </member>
  5034. <member name="M:System.Web.Mvc.ResultExecutingContext.#ctor">
  5035. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ResultExecutingContext" /> class.</summary>
  5036. </member>
  5037. <member name="M:System.Web.Mvc.ResultExecutingContext.#ctor(System.Web.Mvc.ControllerContext,System.Web.Mvc.ActionResult)">
  5038. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ResultExecutingContext" /> class by using the specified controller context and action result.</summary>
  5039. <param name="controllerContext">The controller context.</param>
  5040. <param name="result">The action result.</param>
  5041. <exception cref="T:System.ArgumentNullException">The <paramref name="result" /> parameter is null.</exception>
  5042. </member>
  5043. <member name="P:System.Web.Mvc.ResultExecutingContext.Cancel">
  5044. <summary>Gets or sets a value that indicates whether this <see cref="T:System.Web.Mvc.ResultExecutingContext" /> value is "cancel".</summary>
  5045. <returns>true if the value is "cancel"; otherwise, false.</returns>
  5046. </member>
  5047. <member name="P:System.Web.Mvc.ResultExecutingContext.Result">
  5048. <summary>Gets or sets the action result.</summary>
  5049. <returns>The action result.</returns>
  5050. </member>
  5051. <member name="T:System.Web.Mvc.RouteCollectionExtensions">
  5052. <summary>Extends a <see cref="T:System.Web.Routing.RouteCollection" /> object for MVC routing.</summary>
  5053. </member>
  5054. <member name="M:System.Web.Mvc.RouteCollectionExtensions.GetVirtualPathForArea(System.Web.Routing.RouteCollection,System.Web.Routing.RequestContext,System.String,System.Web.Routing.RouteValueDictionary)">
  5055. <summary>Returns an object that contains information about the route and virtual path that are the result of generating a URL in the current area.</summary>
  5056. <returns>An object that contains information about the route and virtual path that are the result of generating a URL in the current area.</returns>
  5057. <param name="routes">An object that contains the routes for the applications.</param>
  5058. <param name="requestContext">An object that encapsulates information about the requested route.</param>
  5059. <param name="name">The name of the route to use when information about the URL path is retrieved.</param>
  5060. <param name="values">An object that contains the parameters for a route.</param>
  5061. </member>
  5062. <member name="M:System.Web.Mvc.RouteCollectionExtensions.GetVirtualPathForArea(System.Web.Routing.RouteCollection,System.Web.Routing.RequestContext,System.Web.Routing.RouteValueDictionary)">
  5063. <summary>Returns an object that contains information about the route and virtual path that are the result of generating a URL in the current area.</summary>
  5064. <returns>An object that contains information about the route and virtual path that are the result of generating a URL in the current area.</returns>
  5065. <param name="routes">An object that contains the routes for the applications.</param>
  5066. <param name="requestContext">An object that encapsulates information about the requested route.</param>
  5067. <param name="values">An object that contains the parameters for a route.</param>
  5068. </member>
  5069. <member name="M:System.Web.Mvc.RouteCollectionExtensions.IgnoreRoute(System.Web.Routing.RouteCollection,System.String)">
  5070. <summary>Ignores the specified URL route for the given list of available routes.</summary>
  5071. <param name="routes">A collection of routes for the application.</param>
  5072. <param name="url">The URL pattern for the route to ignore.</param>
  5073. <exception cref="T:System.ArgumentNullException">The <paramref name="routes" /> or <paramref name="url" /> parameter is null.</exception>
  5074. </member>
  5075. <member name="M:System.Web.Mvc.RouteCollectionExtensions.IgnoreRoute(System.Web.Routing.RouteCollection,System.String,System.Object)">
  5076. <summary>Ignores the specified URL route for the given list of the available routes and a list of constraints.</summary>
  5077. <param name="routes">A collection of routes for the application.</param>
  5078. <param name="url">The URL pattern for the route to ignore.</param>
  5079. <param name="constraints">A set of expressions that specify values for the <paramref name="url" /> parameter.</param>
  5080. <exception cref="T:System.ArgumentNullException">The <paramref name="routes" /> or <paramref name="url" /> parameter is null.</exception>
  5081. </member>
  5082. <member name="M:System.Web.Mvc.RouteCollectionExtensions.MapRoute(System.Web.Routing.RouteCollection,System.String,System.String)">
  5083. <summary>Maps the specified URL route.</summary>
  5084. <returns>A reference to the mapped route.</returns>
  5085. <param name="routes">A collection of routes for the application.</param>
  5086. <param name="name">The name of the route to map.</param>
  5087. <param name="url">The URL pattern for the route.</param>
  5088. <exception cref="T:System.ArgumentNullException">The <paramref name="routes" /> or <paramref name="url" /> parameter is null.</exception>
  5089. </member>
  5090. <member name="M:System.Web.Mvc.RouteCollectionExtensions.MapRoute(System.Web.Routing.RouteCollection,System.String,System.String,System.Object)">
  5091. <summary>Maps the specified URL route and sets default route values.</summary>
  5092. <returns>A reference to the mapped route.</returns>
  5093. <param name="routes">A collection of routes for the application.</param>
  5094. <param name="name">The name of the route to map.</param>
  5095. <param name="url">The URL pattern for the route.</param>
  5096. <param name="defaults">An object that contains default route values.</param>
  5097. <exception cref="T:System.ArgumentNullException">The <paramref name="routes" /> or <paramref name="url" /> parameter is null.</exception>
  5098. </member>
  5099. <member name="M:System.Web.Mvc.RouteCollectionExtensions.MapRoute(System.Web.Routing.RouteCollection,System.String,System.String,System.Object,System.Object)">
  5100. <summary>Maps the specified URL route and sets default route values and constraints.</summary>
  5101. <returns>A reference to the mapped route.</returns>
  5102. <param name="routes">A collection of routes for the application.</param>
  5103. <param name="name">The name of the route to map.</param>
  5104. <param name="url">The URL pattern for the route.</param>
  5105. <param name="defaults">An object that contains default route values.</param>
  5106. <param name="constraints">A set of expressions that specify values for the <paramref name="url" /> parameter.</param>
  5107. <exception cref="T:System.ArgumentNullException">The <paramref name="routes" /> or <paramref name="url" /> parameter is null.</exception>
  5108. </member>
  5109. <member name="M:System.Web.Mvc.RouteCollectionExtensions.MapRoute(System.Web.Routing.RouteCollection,System.String,System.String,System.Object,System.Object,System.String[])">
  5110. <summary>Maps the specified URL route and sets default route values, constraints, and namespaces.</summary>
  5111. <returns>A reference to the mapped route.</returns>
  5112. <param name="routes">A collection of routes for the application.</param>
  5113. <param name="name">The name of the route to map.</param>
  5114. <param name="url">The URL pattern for the route.</param>
  5115. <param name="defaults">An object that contains default route values.</param>
  5116. <param name="constraints">A set of expressions that specify values for the <paramref name="url" /> parameter.</param>
  5117. <param name="namespaces">A set of namespaces for the application.</param>
  5118. <exception cref="T:System.ArgumentNullException">The <paramref name="routes" /> or <paramref name="url" /> parameter is null.</exception>
  5119. </member>
  5120. <member name="M:System.Web.Mvc.RouteCollectionExtensions.MapRoute(System.Web.Routing.RouteCollection,System.String,System.String,System.Object,System.String[])">
  5121. <summary>Maps the specified URL route and sets default route values and namespaces.</summary>
  5122. <returns>A reference to the mapped route.</returns>
  5123. <param name="routes">A collection of routes for the application.</param>
  5124. <param name="name">The name of the route to map.</param>
  5125. <param name="url">The URL pattern for the route.</param>
  5126. <param name="defaults">An object that contains default route values.</param>
  5127. <param name="namespaces">A set of namespaces for the application.</param>
  5128. <exception cref="T:System.ArgumentNullException">The <paramref name="routes" /> or <paramref name="url" /> parameter is null.</exception>
  5129. </member>
  5130. <member name="M:System.Web.Mvc.RouteCollectionExtensions.MapRoute(System.Web.Routing.RouteCollection,System.String,System.String,System.String[])">
  5131. <summary>Maps the specified URL route and sets the namespaces.</summary>
  5132. <returns>A reference to the mapped route.</returns>
  5133. <param name="routes">A collection of routes for the application.</param>
  5134. <param name="name">The name of the route to map.</param>
  5135. <param name="url">The URL pattern for the route.</param>
  5136. <param name="namespaces">A set of namespaces for the application.</param>
  5137. <exception cref="T:System.ArgumentNullException">The <paramref name="routes" /> or <paramref name="url" /> parameter is null.</exception>
  5138. </member>
  5139. <member name="T:System.Web.Mvc.RouteDataValueProvider">
  5140. <summary>Represents a value provider for route data that is contained in an object that implements the <see cref="T:System.Collections.Generic.IDictionary`2" /> interface.</summary>
  5141. </member>
  5142. <member name="M:System.Web.Mvc.RouteDataValueProvider.#ctor(System.Web.Mvc.ControllerContext)">
  5143. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.RouteDataValueProvider" /> class.</summary>
  5144. <param name="controllerContext">An object that contain information about the HTTP request.</param>
  5145. </member>
  5146. <member name="T:System.Web.Mvc.RouteDataValueProviderFactory">
  5147. <summary>Represents a factory for creating route-data value provider objects.</summary>
  5148. </member>
  5149. <member name="M:System.Web.Mvc.RouteDataValueProviderFactory.#ctor">
  5150. <summary>Initialized a new instance of the <see cref="T:System.Web.Mvc.RouteDataValueProviderFactory" /> class.</summary>
  5151. </member>
  5152. <member name="M:System.Web.Mvc.RouteDataValueProviderFactory.GetValueProvider(System.Web.Mvc.ControllerContext)">
  5153. <summary>Returns a value-provider object for the specified controller context.</summary>
  5154. <returns>A value-provider object.</returns>
  5155. <param name="controllerContext">An object that encapsulates information about the current HTTP request.</param>
  5156. <exception cref="T:System.ArgumentNullException">The <paramref name="controllerContext" /> parameter is null.</exception>
  5157. </member>
  5158. <member name="T:System.Web.Mvc.SelectList">
  5159. <summary>Represents a list that lets users select one item.</summary>
  5160. </member>
  5161. <member name="M:System.Web.Mvc.SelectList.#ctor(System.Collections.IEnumerable)">
  5162. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.SelectList" /> class by using the specified items for the list.</summary>
  5163. <param name="items">The items.</param>
  5164. </member>
  5165. <member name="M:System.Web.Mvc.SelectList.#ctor(System.Collections.IEnumerable,System.Object)">
  5166. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.SelectList" /> class by using the specified items for the list and a selected value.</summary>
  5167. <param name="items">The items.</param>
  5168. <param name="selectedValue">The selected value.</param>
  5169. </member>
  5170. <member name="M:System.Web.Mvc.SelectList.#ctor(System.Collections.IEnumerable,System.String,System.String)">
  5171. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.SelectList" /> class by using the specified items for the list, the data value field, and the data text field.</summary>
  5172. <param name="items">The items.</param>
  5173. <param name="dataValueField">The data value field.</param>
  5174. <param name="dataTextField">The data text field.</param>
  5175. </member>
  5176. <member name="M:System.Web.Mvc.SelectList.#ctor(System.Collections.IEnumerable,System.String,System.String,System.Object)">
  5177. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.SelectList" /> class by using the specified items for the list, the data value field, the data text field, and a selected value.</summary>
  5178. <param name="items">The items.</param>
  5179. <param name="dataValueField">The data value field.</param>
  5180. <param name="dataTextField">The data text field.</param>
  5181. <param name="selectedValue">The selected value.</param>
  5182. </member>
  5183. <member name="P:System.Web.Mvc.SelectList.SelectedValue">
  5184. <summary>Gets the list value that was selected by the user.</summary>
  5185. <returns>The selected value.</returns>
  5186. </member>
  5187. <member name="T:System.Web.Mvc.SelectListItem">
  5188. <summary>Represents the selected item in an instance of the <see cref="T:System.Web.Mvc.SelectList" /> class.</summary>
  5189. </member>
  5190. <member name="M:System.Web.Mvc.SelectListItem.#ctor">
  5191. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.SelectListItem" /> class.</summary>
  5192. </member>
  5193. <member name="P:System.Web.Mvc.SelectListItem.Selected">
  5194. <summary>Gets or sets a value that indicates whether this <see cref="T:System.Web.Mvc.SelectListItem" /> is selected.</summary>
  5195. <returns>true if the item is selected; otherwise, false.</returns>
  5196. </member>
  5197. <member name="P:System.Web.Mvc.SelectListItem.Text">
  5198. <summary>Gets or sets the text of the selected item.</summary>
  5199. <returns>The text.</returns>
  5200. </member>
  5201. <member name="P:System.Web.Mvc.SelectListItem.Value">
  5202. <summary>Gets or sets the value of the selected item.</summary>
  5203. <returns>The value.</returns>
  5204. </member>
  5205. <member name="T:System.Web.Mvc.SessionStateTempDataProvider">
  5206. <summary>Provides session-state data to the current <see cref="T:System.Web.Mvc.TempDataDictionary" /> object.</summary>
  5207. </member>
  5208. <member name="M:System.Web.Mvc.SessionStateTempDataProvider.#ctor">
  5209. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.SessionStateTempDataProvider" /> class.</summary>
  5210. </member>
  5211. <member name="M:System.Web.Mvc.SessionStateTempDataProvider.LoadTempData(System.Web.Mvc.ControllerContext)">
  5212. <summary>Loads the temporary data by using the specified controller context.</summary>
  5213. <returns>The temporary data.</returns>
  5214. <param name="controllerContext">The controller context.</param>
  5215. <exception cref="T:System.InvalidOperationException">An error occurred when the session context was being retrieved.</exception>
  5216. </member>
  5217. <member name="M:System.Web.Mvc.SessionStateTempDataProvider.SaveTempData(System.Web.Mvc.ControllerContext,System.Collections.Generic.IDictionary{System.String,System.Object})">
  5218. <summary>Saves the specified values in the temporary data dictionary by using the specified controller context.</summary>
  5219. <param name="controllerContext">The controller context.</param>
  5220. <param name="values">The values.</param>
  5221. <exception cref="T:System.InvalidOperationException">An error occurred the session context was being retrieved.</exception>
  5222. </member>
  5223. <member name="T:System.Web.Mvc.SkipRequestValidationAttribute">
  5224. <summary>Skips request validation for the property.</summary>
  5225. </member>
  5226. <member name="M:System.Web.Mvc.SkipRequestValidationAttribute.#ctor">
  5227. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.SkipRequestValidationAttribute" /> class.</summary>
  5228. </member>
  5229. <member name="M:System.Web.Mvc.SkipRequestValidationAttribute.OnMetadataCreated(System.Web.Mvc.ModelMetadata)">
  5230. <summary>This method supports the ASP.NET MVC validation infrastructure and is not intended to be used directly from your code.</summary>
  5231. <param name="metadata">The model metadata.</param>
  5232. </member>
  5233. <member name="T:System.Web.Mvc.StringLengthAttributeAdapter">
  5234. <summary>Provides an adapter for the <see cref="T:System.ComponentModel.DataAnnotations.StringLengthAttribute" /> attribute.</summary>
  5235. </member>
  5236. <member name="M:System.Web.Mvc.StringLengthAttributeAdapter.#ctor(System.Web.Mvc.ModelMetadata,System.Web.Mvc.ControllerContext,System.ComponentModel.DataAnnotations.StringLengthAttribute)">
  5237. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.StringLengthAttributeAdapter" /> class.</summary>
  5238. <param name="metadata">The model metadata.</param>
  5239. <param name="context">The controller context.</param>
  5240. <param name="attribute">The string-length attribute.</param>
  5241. </member>
  5242. <member name="M:System.Web.Mvc.StringLengthAttributeAdapter.GetClientValidationRules">
  5243. <summary>Gets a list of string-length client validation rules.</summary>
  5244. <returns>A list of string-length client validation rules.</returns>
  5245. </member>
  5246. <member name="T:System.Web.Mvc.TempDataDictionary">
  5247. <summary>Represents a set of data that persists only from one request to the next.</summary>
  5248. </member>
  5249. <member name="M:System.Web.Mvc.TempDataDictionary.#ctor">
  5250. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.TempDataDictionary" /> class.</summary>
  5251. </member>
  5252. <member name="M:System.Web.Mvc.TempDataDictionary.Add(System.String,System.Object)">
  5253. <summary>Adds an element that has the specified key and value to the <see cref="T:System.Collections.Generic.IDictionary`2" /> object.</summary>
  5254. <param name="key">The key of the element to add.</param>
  5255. <param name="value">The value of the element to add.</param>
  5256. <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.IDictionary`2" /> object is read-only.</exception>
  5257. <exception cref="T:System.ArgumentNullException">
  5258. <paramref name="key" /> is null.</exception>
  5259. <exception cref="T:System.ArgumentException">An element that has the same key already exists in the <see cref="T:System.Collections.Generic.IDictionary`2" /> object.</exception>
  5260. </member>
  5261. <member name="M:System.Web.Mvc.TempDataDictionary.Clear">
  5262. <summary>Removes all items from the <see cref="T:System.Collections.Generic.ICollection`1" /> instance.</summary>
  5263. <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1" /> object is read-only.</exception>
  5264. </member>
  5265. <member name="M:System.Web.Mvc.TempDataDictionary.ContainsKey(System.String)">
  5266. <summary>Determines whether the <see cref="T:System.Collections.Generic.IDictionary`2" /> instance contains an element that has the specified key.</summary>
  5267. <returns>true if the <see cref="T:System.Collections.Generic.IDictionary`2" /> instance contains an element that has the specified key; otherwise, false.</returns>
  5268. <param name="key">The key to locate in the <see cref="T:System.Collections.Generic.IDictionary`2" /> instance.</param>
  5269. <exception cref="T:System.ArgumentNullException">
  5270. <paramref name="key" /> is null.</exception>
  5271. </member>
  5272. <member name="M:System.Web.Mvc.TempDataDictionary.ContainsValue(System.Object)">
  5273. <summary>Determines whether the dictionary contains the specified value.</summary>
  5274. <returns>true if the dictionary contains the specified value; otherwise, false.</returns>
  5275. <param name="value">The value.</param>
  5276. </member>
  5277. <member name="P:System.Web.Mvc.TempDataDictionary.Count">
  5278. <summary>Gets the number of elements in the <see cref="T:System.Collections.Generic.ICollection`1" /> object.</summary>
  5279. <returns>The number of elements in the <see cref="T:System.Collections.Generic.ICollection`1" /> object.</returns>
  5280. </member>
  5281. <member name="M:System.Web.Mvc.TempDataDictionary.GetEnumerator">
  5282. <summary>Gets the enumerator.</summary>
  5283. <returns>The enumerator.</returns>
  5284. </member>
  5285. <member name="P:System.Web.Mvc.TempDataDictionary.Item(System.String)">
  5286. <summary>Gets or sets the object that has the specified key.</summary>
  5287. <returns>The object that has the specified key.</returns>
  5288. <param name="key">The key to access.</param>
  5289. </member>
  5290. <member name="M:System.Web.Mvc.TempDataDictionary.Keep">
  5291. <summary>Marks all keys in the dictionary for retention.</summary>
  5292. </member>
  5293. <member name="M:System.Web.Mvc.TempDataDictionary.Keep(System.String)">
  5294. <summary>Marks the specified key in the dictionary for retention.</summary>
  5295. <param name="key">The key to retain in the dictionary.</param>
  5296. </member>
  5297. <member name="P:System.Web.Mvc.TempDataDictionary.Keys">
  5298. <summary>Gets an <see cref="T:System.Collections.Generic.ICollection`1" /> object that contains the keys of elements in the <see cref="T:System.Collections.Generic.IDictionary`2" /> object.</summary>
  5299. <returns>The keys of the elements in the <see cref="T:System.Collections.Generic.IDictionary`2" /> object.</returns>
  5300. </member>
  5301. <member name="M:System.Web.Mvc.TempDataDictionary.Load(System.Web.Mvc.ControllerContext,System.Web.Mvc.ITempDataProvider)">
  5302. <summary>Loads the specified controller context by using the specified data provider.</summary>
  5303. <param name="controllerContext">The controller context.</param>
  5304. <param name="tempDataProvider">The temporary data provider.</param>
  5305. </member>
  5306. <member name="M:System.Web.Mvc.TempDataDictionary.Peek(System.String)">
  5307. <summary>Returns an object that contains the element that is associated with the specified key, without marking the key for deletion.</summary>
  5308. <returns>An object that contains the element that is associated with the specified key.</returns>
  5309. <param name="key">The key of the element to return.</param>
  5310. </member>
  5311. <member name="M:System.Web.Mvc.TempDataDictionary.Remove(System.String)">
  5312. <summary>Removes the element that has the specified key from the <see cref="T:System.Collections.Generic.IDictionary`2" /> object.</summary>
  5313. <returns>true if the element was removed successfully; otherwise, false. This method also returns false if <paramref name="key" /> was not found in the <see cref="T:System.Collections.Generic.IDictionary`2" />. instance.</returns>
  5314. <param name="key">The key of the element to remove.</param>
  5315. <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.IDictionary`2" /> object is read-only.</exception>
  5316. <exception cref="T:System.ArgumentNullException">
  5317. <paramref name="key" /> is null.</exception>
  5318. </member>
  5319. <member name="M:System.Web.Mvc.TempDataDictionary.Save(System.Web.Mvc.ControllerContext,System.Web.Mvc.ITempDataProvider)">
  5320. <summary>Saves the specified controller context by using the specified data provider.</summary>
  5321. <param name="controllerContext">The controller context.</param>
  5322. <param name="tempDataProvider">The temporary data provider.</param>
  5323. </member>
  5324. <member name="M:System.Web.Mvc.TempDataDictionary.System#Collections#Generic#ICollection{T}#Add(System.Collections.Generic.KeyValuePair{System.String,System.Object})">
  5325. <summary>Adds the specified key/value pair to the dictionary.</summary>
  5326. <param name="keyValuePair">The key/value pair.</param>
  5327. </member>
  5328. <member name="M:System.Web.Mvc.TempDataDictionary.System#Collections#Generic#ICollection{T}#Contains(System.Collections.Generic.KeyValuePair{System.String,System.Object})">
  5329. <summary>Determines whether a sequence contains a specified element by using the default equality comparer.</summary>
  5330. <returns>true if the dictionary contains the specified key/value pair; otherwise, false.</returns>
  5331. <param name="keyValuePair">The key/value pair to search for.</param>
  5332. </member>
  5333. <member name="M:System.Web.Mvc.TempDataDictionary.System#Collections#Generic#ICollection{T}#CopyTo(System.Collections.Generic.KeyValuePair{System.String,System.Object}[],System.Int32)">
  5334. <summary>Copies a key/value pair to the specified array at the specified index.</summary>
  5335. <param name="array">The target array.</param>
  5336. <param name="index">The index.</param>
  5337. </member>
  5338. <member name="P:System.Web.Mvc.TempDataDictionary.System#Collections#Generic#ICollection{T}#IsReadOnly">
  5339. <summary>Gets a value that indicates whether the dictionary is read-only.</summary>
  5340. <returns>true if the dictionary is read-only; otherwise, false.</returns>
  5341. </member>
  5342. <member name="M:System.Web.Mvc.TempDataDictionary.System#Collections#Generic#ICollection{T}#Remove(System.Collections.Generic.KeyValuePair{System.String,System.Object})">
  5343. <summary>Deletes the specified key/value pair from the dictionary.</summary>
  5344. <returns>true if the key/value pair was removed successfully; otherwise, false.</returns>
  5345. <param name="keyValuePair">The key/value pair.</param>
  5346. </member>
  5347. <member name="M:System.Web.Mvc.TempDataDictionary.System#Collections#IEnumerable#GetEnumerator">
  5348. <summary>Returns an enumerator that can be used to iterate through a collection.</summary>
  5349. <returns>An <see cref="T:System.Collections.IEnumerator" /> object that can be used to iterate through the collection.</returns>
  5350. </member>
  5351. <member name="M:System.Web.Mvc.TempDataDictionary.TryGetValue(System.String,System.Object@)">
  5352. <summary>Gets the value of the element that has the specified key.</summary>
  5353. <returns>true if the object that implements <see cref="T:System.Collections.Generic.IDictionary`2" /> contains an element that has the specified key; otherwise, false.</returns>
  5354. <param name="key">The key of the value to get.</param>
  5355. <param name="value">When this method returns, the value that is associated with the specified key, if the key is found; otherwise, the default value for the type of the <paramref name="value" /> parameter. This parameter is passed uninitialized.</param>
  5356. <exception cref="T:System.ArgumentNullException">
  5357. <paramref name="key" /> is null.</exception>
  5358. </member>
  5359. <member name="P:System.Web.Mvc.TempDataDictionary.Values">
  5360. <summary>Gets the <see cref="T:System.Collections.Generic.ICollection`1" /> object that contains the values in the <see cref="T:System.Collections.Generic.IDictionary`2" /> object.</summary>
  5361. <returns>The values of the elements in the object that implements <see cref="T:System.Collections.Generic.IDictionary`2" />.</returns>
  5362. </member>
  5363. <member name="T:System.Web.Mvc.TemplateInfo">
  5364. <summary>Encapsulates information about the current template context.</summary>
  5365. </member>
  5366. <member name="M:System.Web.Mvc.TemplateInfo.#ctor">
  5367. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.TemplateInfo" /> class.</summary>
  5368. </member>
  5369. <member name="P:System.Web.Mvc.TemplateInfo.FormattedModelValue">
  5370. <summary>Gets or sets the formatted model value.</summary>
  5371. <returns>The formatted model value.</returns>
  5372. </member>
  5373. <member name="M:System.Web.Mvc.TemplateInfo.GetFullHtmlFieldId(System.String)">
  5374. <summary>Retrieves the full DOM ID of a field using the specified HTML name attribute.</summary>
  5375. <returns>The full DOM ID.</returns>
  5376. <param name="partialFieldName">The value of the HTML name attribute.</param>
  5377. </member>
  5378. <member name="M:System.Web.Mvc.TemplateInfo.GetFullHtmlFieldName(System.String)">
  5379. <summary>Retrieves the fully qualified name (including a prefix) for a field using the specified HTML name attribute.</summary>
  5380. <returns>The prefixed name of the field.</returns>
  5381. <param name="partialFieldName">The value of the HTML name attribute.</param>
  5382. </member>
  5383. <member name="P:System.Web.Mvc.TemplateInfo.HtmlFieldPrefix">
  5384. <summary>Gets or sets the HTML field prefix.</summary>
  5385. <returns>The HTML field prefix.</returns>
  5386. </member>
  5387. <member name="P:System.Web.Mvc.TemplateInfo.TemplateDepth">
  5388. <summary>Contains the number of objects that were visited by the user.</summary>
  5389. <returns>The number of objects.</returns>
  5390. </member>
  5391. <member name="M:System.Web.Mvc.TemplateInfo.Visited(System.Web.Mvc.ModelMetadata)">
  5392. <summary>Determines whether the template has been visited by the user.</summary>
  5393. <returns>true if the template has been visited by the user; otherwise, false.</returns>
  5394. <param name="metadata">An object that encapsulates information that describes the model.</param>
  5395. </member>
  5396. <member name="T:System.Web.Mvc.UrlHelper">
  5397. <summary>Contains methods to build URLs for ASP.NET MVC within an application.</summary>
  5398. </member>
  5399. <member name="M:System.Web.Mvc.UrlHelper.#ctor(System.Web.Routing.RequestContext)">
  5400. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.UrlHelper" /> class using the specified request context.</summary>
  5401. <param name="requestContext">An object that contains information about the current request and about the route that it matched.</param>
  5402. <exception cref="T:System.ArgumentNullException">The <paramref name="requestContext" /> parameter is null.</exception>
  5403. </member>
  5404. <member name="M:System.Web.Mvc.UrlHelper.#ctor(System.Web.Routing.RequestContext,System.Web.Routing.RouteCollection)">
  5405. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.UrlHelper" /> class by using the specified request context and route collection.</summary>
  5406. <param name="requestContext">An object that contains information about the current request and about the route that it matched.</param>
  5407. <param name="routeCollection">A collection of routes.</param>
  5408. <exception cref="T:System.ArgumentNullException">The <paramref name="requestContext" /> or the <paramref name="routeCollection" /> parameter is null.</exception>
  5409. </member>
  5410. <member name="M:System.Web.Mvc.UrlHelper.Action(System.String)">
  5411. <summary>Generates a fully qualified URL to an action method by using the specified action name.</summary>
  5412. <returns>The fully qualified URL to an action method.</returns>
  5413. <param name="actionName">The name of the action method.</param>
  5414. </member>
  5415. <member name="M:System.Web.Mvc.UrlHelper.Action(System.String,System.Object)">
  5416. <summary>Generates a fully qualified URL to an action method by using the specified action name and route values.</summary>
  5417. <returns>The fully qualified URL to an action method.</returns>
  5418. <param name="actionName">The name of the action method.</param>
  5419. <param name="routeValues">An object that contains the parameters for a route. The parameters are retrieved through reflection by examining the properties of the object. The object is typically created by using object initializer syntax.</param>
  5420. </member>
  5421. <member name="M:System.Web.Mvc.UrlHelper.Action(System.String,System.String)">
  5422. <summary>Generates a fully qualified URL to an action method by using the specified action name and controller name.</summary>
  5423. <returns>The fully qualified URL to an action method.</returns>
  5424. <param name="actionName">The name of the action method.</param>
  5425. <param name="controllerName">The name of the controller.</param>
  5426. </member>
  5427. <member name="M:System.Web.Mvc.UrlHelper.Action(System.String,System.String,System.Object)">
  5428. <summary>Generates a fully qualified URL to an action method by using the specified action name, controller name, and route values.</summary>
  5429. <returns>The fully qualified URL to an action method.</returns>
  5430. <param name="actionName">The name of the action method.</param>
  5431. <param name="controllerName">The name of the controller.</param>
  5432. <param name="routeValues">An object that contains the parameters for a route. The parameters are retrieved through reflection by examining the properties of the object. The object is typically created by using object initializer syntax.</param>
  5433. </member>
  5434. <member name="M:System.Web.Mvc.UrlHelper.Action(System.String,System.String,System.Object,System.String)">
  5435. <summary>Generates a fully qualified URL to an action method by using the specified action name, controller name, route values, and protocol to use.</summary>
  5436. <returns>The fully qualified URL to an action method.</returns>
  5437. <param name="actionName">The name of the action method.</param>
  5438. <param name="controllerName">The name of the controller.</param>
  5439. <param name="routeValues">An object that contains the parameters for a route. The parameters are retrieved through reflection by examining the properties of the object. The object is typically created by using object initializer syntax.</param>
  5440. <param name="protocol">The protocol for the URL, such as "http" or "https".</param>
  5441. </member>
  5442. <member name="M:System.Web.Mvc.UrlHelper.Action(System.String,System.String,System.Web.Routing.RouteValueDictionary)">
  5443. <summary>Generates a fully qualified URL to an action method by using the specified action name, controller name, and route values.</summary>
  5444. <returns>The fully qualified URL to an action method.</returns>
  5445. <param name="actionName">The name of the action method.</param>
  5446. <param name="controllerName">The name of the controller.</param>
  5447. <param name="routeValues">An object that contains the parameters for a route.</param>
  5448. </member>
  5449. <member name="M:System.Web.Mvc.UrlHelper.Action(System.String,System.String,System.Web.Routing.RouteValueDictionary,System.String,System.String)">
  5450. <summary>Generates a fully qualified URL for an action method by using the specified action name, controller name, route values, protocol to use, and host name.</summary>
  5451. <returns>The fully qualified URL to an action method.</returns>
  5452. <param name="actionName">The name of the action method.</param>
  5453. <param name="controllerName">The name of the controller.</param>
  5454. <param name="routeValues">An object that contains the parameters for a route.</param>
  5455. <param name="protocol">The protocol for the URL, such as "http" or "https".</param>
  5456. <param name="hostName">The host name for the URL.</param>
  5457. </member>
  5458. <member name="M:System.Web.Mvc.UrlHelper.Action(System.String,System.Web.Routing.RouteValueDictionary)">
  5459. <summary>Generates a fully qualified URL to an action method for the specified action name and route values.</summary>
  5460. <returns>The fully qualified URL to an action method.</returns>
  5461. <param name="actionName">The name of the action method.</param>
  5462. <param name="routeValues">An object that contains the parameters for a route.</param>
  5463. </member>
  5464. <member name="M:System.Web.Mvc.UrlHelper.Content(System.String)">
  5465. <summary>Converts a virtual (relative) path to an application absolute path.</summary>
  5466. <returns>The application absolute path.</returns>
  5467. <param name="contentPath">The virtual path of the content.</param>
  5468. </member>
  5469. <member name="M:System.Web.Mvc.UrlHelper.Encode(System.String)">
  5470. <summary>Encodes special characters in a URL string into character-entity equivalents.</summary>
  5471. <returns>An encoded URL string.</returns>
  5472. <param name="url">The text to encode.</param>
  5473. </member>
  5474. <member name="M:System.Web.Mvc.UrlHelper.GenerateContentUrl(System.String,System.Web.HttpContextBase)">
  5475. <summary>Returns a string that contains a content URL.</summary>
  5476. <returns>A string that contains a content URL.</returns>
  5477. <param name="contentPath">The content path.</param>
  5478. <param name="httpContext">The HTTP context.</param>
  5479. </member>
  5480. <member name="M:System.Web.Mvc.UrlHelper.GenerateUrl(System.String,System.String,System.String,System.String,System.String,System.String,System.Web.Routing.RouteValueDictionary,System.Web.Routing.RouteCollection,System.Web.Routing.RequestContext,System.Boolean)">
  5481. <summary>Returns a string that contains a URL.</summary>
  5482. <returns>A string that contains a URL.</returns>
  5483. <param name="routeName">The route name.</param>
  5484. <param name="actionName">The action name.</param>
  5485. <param name="controllerName">The controller name.</param>
  5486. <param name="protocol">The HTTP protocol.</param>
  5487. <param name="hostName">The host name.</param>
  5488. <param name="fragment">The fragment.</param>
  5489. <param name="routeValues">The route values.</param>
  5490. <param name="routeCollection">The route collection.</param>
  5491. <param name="requestContext">The request context.</param>
  5492. <param name="includeImplicitMvcValues">true to include implicit MVC values; otherwise false.</param>
  5493. </member>
  5494. <member name="M:System.Web.Mvc.UrlHelper.GenerateUrl(System.String,System.String,System.String,System.Web.Routing.RouteValueDictionary,System.Web.Routing.RouteCollection,System.Web.Routing.RequestContext,System.Boolean)">
  5495. <summary>Returns a string that contains a URL.</summary>
  5496. <returns>A string that contains a URL.</returns>
  5497. <param name="routeName">The route name.</param>
  5498. <param name="actionName">The action name.</param>
  5499. <param name="controllerName">The controller name.</param>
  5500. <param name="routeValues">The route values.</param>
  5501. <param name="routeCollection">The route collection.</param>
  5502. <param name="requestContext">The request context.</param>
  5503. <param name="includeImplicitMvcValues">true to include implicit MVC values; otherwise. false.</param>
  5504. </member>
  5505. <member name="M:System.Web.Mvc.UrlHelper.IsLocalUrl(System.String)"></member>
  5506. <member name="P:System.Web.Mvc.UrlHelper.RequestContext">
  5507. <summary>Gets information about an HTTP request that matches a defined route.</summary>
  5508. <returns>The request context.</returns>
  5509. </member>
  5510. <member name="P:System.Web.Mvc.UrlHelper.RouteCollection">
  5511. <summary>Gets a collection that contains the routes that are registered for the application.</summary>
  5512. <returns>The route collection.</returns>
  5513. </member>
  5514. <member name="M:System.Web.Mvc.UrlHelper.RouteUrl(System.Object)">
  5515. <summary>Generates a fully qualified URL for the specified route values.</summary>
  5516. <returns>The fully qualified URL.</returns>
  5517. <param name="routeValues">An object that contains the parameters for a route. The parameters are retrieved through reflection by examining the properties of the object. The object is typically created by using object initializer syntax.</param>
  5518. </member>
  5519. <member name="M:System.Web.Mvc.UrlHelper.RouteUrl(System.String)">
  5520. <summary>Generates a fully qualified URL for the specified route name.</summary>
  5521. <returns>The fully qualified URL.</returns>
  5522. <param name="routeName">The name of the route that is used to generate the URL.</param>
  5523. </member>
  5524. <member name="M:System.Web.Mvc.UrlHelper.RouteUrl(System.String,System.Object)">
  5525. <summary>Generates a fully qualified URL for the specified route values by using a route name.</summary>
  5526. <returns>The fully qualified URL.</returns>
  5527. <param name="routeName">The name of the route that is used to generate the URL.</param>
  5528. <param name="routeValues">An object that contains the parameters for a route. The parameters are retrieved through reflection by examining the properties of the object. The object is typically created by using object initializer syntax.</param>
  5529. </member>
  5530. <member name="M:System.Web.Mvc.UrlHelper.RouteUrl(System.String,System.Object,System.String)">
  5531. <summary>Generates a fully qualified URL for the specified route values by using a route name and the protocol to use.</summary>
  5532. <returns>The fully qualified URL.</returns>
  5533. <param name="routeName">The name of the route that is used to generate the URL.</param>
  5534. <param name="routeValues">An object that contains the parameters for a route. The parameters are retrieved through reflection by examining the properties of the object. The object is typically created by using object initializer syntax.</param>
  5535. <param name="protocol">The protocol for the URL, such as "http" or "https".</param>
  5536. </member>
  5537. <member name="M:System.Web.Mvc.UrlHelper.RouteUrl(System.String,System.Web.Routing.RouteValueDictionary)">
  5538. <summary>Generates a fully qualified URL for the specified route values by using a route name.</summary>
  5539. <returns>The fully qualified URL.</returns>
  5540. <param name="routeName">The name of the route that is used to generate the URL.</param>
  5541. <param name="routeValues">An object that contains the parameters for a route.</param>
  5542. </member>
  5543. <member name="M:System.Web.Mvc.UrlHelper.RouteUrl(System.String,System.Web.Routing.RouteValueDictionary,System.String,System.String)">
  5544. <summary>Generates a fully qualified URL for the specified route values by using the specified route name, protocol to use, and host name.</summary>
  5545. <returns>The fully qualified URL.</returns>
  5546. <param name="routeName">The name of the route that is used to generate the URL.</param>
  5547. <param name="routeValues">An object that contains the parameters for a route.</param>
  5548. <param name="protocol">The protocol for the URL, such as "http" or "https".</param>
  5549. <param name="hostName">The host name for the URL.</param>
  5550. </member>
  5551. <member name="M:System.Web.Mvc.UrlHelper.RouteUrl(System.Web.Routing.RouteValueDictionary)">
  5552. <summary>Generates a fully qualified URL for the specified route values.</summary>
  5553. <returns>The fully qualified URL.</returns>
  5554. <param name="routeValues">An object that contains the parameters for a route.</param>
  5555. </member>
  5556. <member name="T:System.Web.Mvc.UrlParameter">
  5557. <summary>Represents an optional parameter that is used by the <see cref="T:System.Web.Mvc.MvcHandler" /> class during routing.</summary>
  5558. </member>
  5559. <member name="F:System.Web.Mvc.UrlParameter.Optional">
  5560. <summary>Contains the read-only value for the optional parameter.</summary>
  5561. </member>
  5562. <member name="T:System.Web.Mvc.ValidatableObjectAdapter">
  5563. <summary>Provides an object adapter that can be validated.</summary>
  5564. </member>
  5565. <member name="M:System.Web.Mvc.ValidatableObjectAdapter.#ctor(System.Web.Mvc.ModelMetadata,System.Web.Mvc.ControllerContext)">
  5566. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ValidatableObjectAdapter" /> class.</summary>
  5567. <param name="metadata">The model metadata.</param>
  5568. <param name="context">The controller context.</param>
  5569. </member>
  5570. <member name="M:System.Web.Mvc.ValidatableObjectAdapter.Validate(System.Object)">
  5571. <summary>Validates the specified object.</summary>
  5572. <returns>A list of validation results.</returns>
  5573. <param name="container">The container.</param>
  5574. </member>
  5575. <member name="T:System.Web.Mvc.ValidateAntiForgeryTokenAttribute">
  5576. <summary>Represents an attribute that is used to detect whether a server request has been tampered with.</summary>
  5577. </member>
  5578. <member name="M:System.Web.Mvc.ValidateAntiForgeryTokenAttribute.#ctor">
  5579. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ValidateAntiForgeryTokenAttribute" /> class.</summary>
  5580. </member>
  5581. <member name="M:System.Web.Mvc.ValidateAntiForgeryTokenAttribute.OnAuthorization(System.Web.Mvc.AuthorizationContext)">
  5582. <summary>Called when authorization is required.</summary>
  5583. <param name="filterContext">The filter context.</param>
  5584. <exception cref="T:System.ArgumentNullException">The <paramref name="filterContext" /> parameter is null.</exception>
  5585. </member>
  5586. <member name="P:System.Web.Mvc.ValidateAntiForgeryTokenAttribute.Salt">
  5587. <summary>Gets or sets the salt string.</summary>
  5588. <returns>The salt string.</returns>
  5589. </member>
  5590. <member name="T:System.Web.Mvc.ValidateInputAttribute">
  5591. <summary>Represents an attribute that is used to mark action methods whose input must be validated.</summary>
  5592. </member>
  5593. <member name="M:System.Web.Mvc.ValidateInputAttribute.#ctor(System.Boolean)">
  5594. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ValidateInputAttribute" /> class.</summary>
  5595. <param name="enableValidation">true to enable validation.</param>
  5596. </member>
  5597. <member name="P:System.Web.Mvc.ValidateInputAttribute.EnableValidation">
  5598. <summary>Gets or sets a value that indicates whether to enable validation.</summary>
  5599. <returns>true if validation is enabled; otherwise, false.</returns>
  5600. </member>
  5601. <member name="M:System.Web.Mvc.ValidateInputAttribute.OnAuthorization(System.Web.Mvc.AuthorizationContext)">
  5602. <summary>Called when authorization is required.</summary>
  5603. <param name="filterContext">The filter context.</param>
  5604. <exception cref="T:System.ArgumentNullException">The <paramref name="filterContext" /> parameter is null.</exception>
  5605. </member>
  5606. <member name="T:System.Web.Mvc.ValueProviderCollection">
  5607. <summary>Represents the collection of value-provider objects for the application.</summary>
  5608. </member>
  5609. <member name="M:System.Web.Mvc.ValueProviderCollection.#ctor">
  5610. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ValueProviderCollection" /> class.</summary>
  5611. </member>
  5612. <member name="M:System.Web.Mvc.ValueProviderCollection.#ctor(System.Collections.Generic.IList{System.Web.Mvc.IValueProvider})">
  5613. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ValueProviderCollection" /> class and registers the specified value providers.</summary>
  5614. <param name="list">The list of value providers to register.</param>
  5615. </member>
  5616. <member name="M:System.Web.Mvc.ValueProviderCollection.ContainsPrefix(System.String)">
  5617. <summary>Determines whether the collection contains the specified prefix.</summary>
  5618. <returns>true if the collection contains the specified prefix; otherwise, false.</returns>
  5619. <param name="prefix">The prefix to search for.</param>
  5620. </member>
  5621. <member name="M:System.Web.Mvc.ValueProviderCollection.GetValue(System.String)">
  5622. <summary>Returns a value object using the specified key.</summary>
  5623. <returns>The value object for the specified key.</returns>
  5624. <param name="key">The key of the value object to retrieve.</param>
  5625. </member>
  5626. <member name="M:System.Web.Mvc.ValueProviderCollection.GetValue(System.String,System.Boolean)">
  5627. <summary>Returns a value object using the specified key and skip-validation parameter.</summary>
  5628. <returns>The value object for the specified key.</returns>
  5629. <param name="key">The key of the value object to retrieve.</param>
  5630. <param name="skipValidation">true to specify that validation should be skipped; otherwise, false.</param>
  5631. </member>
  5632. <member name="M:System.Web.Mvc.ValueProviderCollection.InsertItem(System.Int32,System.Web.Mvc.IValueProvider)">
  5633. <summary>Inserts the specified value-provider object into the collection at the specified index location.</summary>
  5634. <param name="index">The zero-based index location at which to insert the value provider into the collection.</param>
  5635. <param name="item">The value-provider object to insert.</param>
  5636. <exception cref="T:System.ArgumentNullException">The <paramref name="item" /> parameter is null.</exception>
  5637. </member>
  5638. <member name="M:System.Web.Mvc.ValueProviderCollection.SetItem(System.Int32,System.Web.Mvc.IValueProvider)">
  5639. <summary>Replaces the value provider at the specified index location with a new value provider.</summary>
  5640. <param name="index">The zero-based index of the element to replace.</param>
  5641. <param name="item">The new value for the element at the specified index.</param>
  5642. <exception cref="T:System.ArgumentNullException">The <paramref name="item" /> parameter is null.</exception>
  5643. </member>
  5644. <member name="T:System.Web.Mvc.ValueProviderDictionary">
  5645. <summary>Represents a dictionary of value providers for the application.</summary>
  5646. </member>
  5647. <member name="M:System.Web.Mvc.ValueProviderDictionary.#ctor(System.Web.Mvc.ControllerContext)">
  5648. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ValueProviderDictionary" /> class.</summary>
  5649. <param name="controllerContext">The controller context.</param>
  5650. </member>
  5651. <member name="M:System.Web.Mvc.ValueProviderDictionary.Add(System.Collections.Generic.KeyValuePair{System.String,System.Web.Mvc.ValueProviderResult})">
  5652. <summary>Adds the specified item to the collection of value providers.</summary>
  5653. <param name="item">The object to add to the <see cref="T:System.Collections.Generic.ICollection`1" /> object.</param>
  5654. <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1" /> object is read-only.</exception>
  5655. </member>
  5656. <member name="M:System.Web.Mvc.ValueProviderDictionary.Add(System.String,System.Object)">
  5657. <summary>Adds an element that has the specified key and value to the collection of value providers.</summary>
  5658. <param name="key">The key of the element to add.</param>
  5659. <param name="value">The value of the element to add.</param>
  5660. <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.IDictionary`2" /> object is read-only.</exception>
  5661. <exception cref="T:System.ArgumentNullException">
  5662. <paramref name="key" /> is null.</exception>
  5663. <exception cref="T:System.ArgumentException">An element that has the specified key already exists in the <see cref="T:System.Collections.Generic.IDictionary`2" /> object.</exception>
  5664. </member>
  5665. <member name="M:System.Web.Mvc.ValueProviderDictionary.Add(System.String,System.Web.Mvc.ValueProviderResult)">
  5666. <summary>Adds an element that has the specified key and value to the collection of value providers.</summary>
  5667. <param name="key">The key of the element to add.</param>
  5668. <param name="value">The value of the element to add.</param>
  5669. <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.IDictionary`2" /> object is read-only.</exception>
  5670. <exception cref="T:System.ArgumentNullException">
  5671. <paramref name="key" /> is null.</exception>
  5672. <exception cref="T:System.ArgumentException">An element that has the specified key already exists in the <see cref="T:System.Collections.Generic.IDictionary`2" /> object.</exception>
  5673. </member>
  5674. <member name="M:System.Web.Mvc.ValueProviderDictionary.Clear">
  5675. <summary>Removes all items from the collection of value providers.</summary>
  5676. <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1" /> object is read-only.</exception>
  5677. </member>
  5678. <member name="M:System.Web.Mvc.ValueProviderDictionary.Contains(System.Collections.Generic.KeyValuePair{System.String,System.Web.Mvc.ValueProviderResult})">
  5679. <summary>Determines whether the collection of value providers contains the specified item.</summary>
  5680. <returns>true if <paramref name="item" /> is found in the collection of value providers; otherwise, false.</returns>
  5681. <param name="item">The object to locate in the <see cref="T:System.Collections.Generic.ICollection`1" /> instance.</param>
  5682. </member>
  5683. <member name="M:System.Web.Mvc.ValueProviderDictionary.ContainsKey(System.String)">
  5684. <summary>Determines whether the collection of value providers contains an element that has the specified key.</summary>
  5685. <returns>true if the collection of value providers contains an element that has the key; otherwise, false.</returns>
  5686. <param name="key">The key of the element to find in the <see cref="T:System.Collections.Generic.IDictionary`2" /> instance.</param>
  5687. <exception cref="T:System.ArgumentNullException">
  5688. <paramref name="key" /> is null.</exception>
  5689. </member>
  5690. <member name="P:System.Web.Mvc.ValueProviderDictionary.ControllerContext">
  5691. <summary>Gets or sets the controller context.</summary>
  5692. <returns>The controller context.</returns>
  5693. </member>
  5694. <member name="M:System.Web.Mvc.ValueProviderDictionary.CopyTo(System.Collections.Generic.KeyValuePair{System.String,System.Web.Mvc.ValueProviderResult}[],System.Int32)">
  5695. <summary>Copies the elements of the collection to an array, starting at the specified index.</summary>
  5696. <param name="array">The one-dimensional array that is the destination of the elements copied from the <see cref="T:System.Collections.Generic.ICollection`1" /> object. The array must have zero-based indexing.</param>
  5697. <param name="arrayIndex">The zero-based index in <paramref name="array" /> at which copying starts.</param>
  5698. <exception cref="T:System.ArgumentNullException">
  5699. <paramref name="array" /> is null.</exception>
  5700. <exception cref="T:System.ArgumentOutOfRangeException">
  5701. <paramref name="arrayIndex" /> is less than 0.</exception>
  5702. <exception cref="T:System.ArgumentException">
  5703. <paramref name="array" /> is multidimensional.-or-<paramref name="arrayIndex" /> is equal to or greater than the length of <paramref name="array" />.-or-The number of elements in the source collection is greater than the available space from <paramref name="arrayIndex" /> to the end of the destination <paramref name="array" />.-or-Type <paramref name="T" /> cannot be cast automatically to the type of the destination array.</exception>
  5704. </member>
  5705. <member name="P:System.Web.Mvc.ValueProviderDictionary.Count">
  5706. <summary>Gets the number of elements in the collection.</summary>
  5707. <returns>The number of elements in the collection.</returns>
  5708. </member>
  5709. <member name="M:System.Web.Mvc.ValueProviderDictionary.GetEnumerator">
  5710. <summary>Returns an enumerator that can be used to iterate through the collection.</summary>
  5711. <returns>An enumerator that can be used to iterate through the collection.</returns>
  5712. </member>
  5713. <member name="P:System.Web.Mvc.ValueProviderDictionary.IsReadOnly">
  5714. <summary>Gets a value that indicates whether the collection is read-only.</summary>
  5715. <returns>true if the collection is read-only; otherwise, false.</returns>
  5716. </member>
  5717. <member name="P:System.Web.Mvc.ValueProviderDictionary.Item(System.String)">
  5718. <summary>Gets or sets the <see cref="T:System.Web.Mvc.ValueProviderResult" /> object that has the specified key.</summary>
  5719. <returns>The <see cref="T:System.Web.Mvc.ValueProviderResult" /> object.</returns>
  5720. <param name="key">The key.</param>
  5721. </member>
  5722. <member name="P:System.Web.Mvc.ValueProviderDictionary.Keys">
  5723. <summary>Gets a collection that contains the keys of the <see cref="T:System.Collections.Generic.IDictionary`2" /> instance.</summary>
  5724. <returns>A collection that contains the keys of the object that implements the <see cref="T:System.Collections.Generic.IDictionary`2" /> interface.</returns>
  5725. </member>
  5726. <member name="M:System.Web.Mvc.ValueProviderDictionary.Remove(System.Collections.Generic.KeyValuePair{System.String,System.Web.Mvc.ValueProviderResult})">
  5727. <summary>Removes the first occurrence of the specified item from the collection of value providers.</summary>
  5728. <returns>true if <paramref name="item" /> was successfully removed from the collection; otherwise, false. This method also returns false if <paramref name="item" /> is not found in the collection.</returns>
  5729. <param name="item">The object to remove from the <see cref="T:System.Collections.Generic.ICollection`1" /> instance.</param>
  5730. <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1" /> object is read-only.</exception>
  5731. </member>
  5732. <member name="M:System.Web.Mvc.ValueProviderDictionary.Remove(System.String)">
  5733. <summary>Removes the element that has the specified key from the collection of value providers.</summary>
  5734. <returns>true if the element was successfully removed; otherwise, false. This method also returns false if <paramref name="key" /> was not found in the collection.</returns>
  5735. <param name="key">The key of the element to remove.</param>
  5736. <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.IDictionary`2" /> object is read-only.</exception>
  5737. <exception cref="T:System.ArgumentNullException">
  5738. <paramref name="key" /> is null.</exception>
  5739. </member>
  5740. <member name="M:System.Web.Mvc.ValueProviderDictionary.System#Collections#IEnumerable#GetEnumerator">
  5741. <summary>Returns an enumerator that can be used to iterate through a collection.</summary>
  5742. <returns>An enumerator that can be used to iterate through the collection.</returns>
  5743. </member>
  5744. <member name="M:System.Web.Mvc.ValueProviderDictionary.System#Web#Mvc#IValueProvider#ContainsPrefix(System.String)">
  5745. <summary>Determines whether the collection contains the specified prefix.</summary>
  5746. <returns>true if the collection contains the specified prefix; otherwise, false.</returns>
  5747. <param name="prefix">The prefix to search for.</param>
  5748. </member>
  5749. <member name="M:System.Web.Mvc.ValueProviderDictionary.System#Web#Mvc#IValueProvider#GetValue(System.String)">
  5750. <summary>Returns a value object using the specified key.</summary>
  5751. <returns>The value object for the specified key.</returns>
  5752. <param name="key">The key of the value object to return.</param>
  5753. </member>
  5754. <member name="M:System.Web.Mvc.ValueProviderDictionary.TryGetValue(System.String,System.Web.Mvc.ValueProviderResult@)">
  5755. <summary>Gets the value of the element that has the specified key.</summary>
  5756. <returns>true if the object that implements <see cref="T:System.Collections.Generic.IDictionary`2" /> contains an element that has the specified key; otherwise, false.</returns>
  5757. <param name="key">The key of the element to get.</param>
  5758. <param name="value">When this method returns, the value that is associated with the specified key, if the key is found; otherwise, the default value for the type of the <paramref name="value" /> parameter. This parameter is passed uninitialized.</param>
  5759. <exception cref="T:System.ArgumentNullException">
  5760. <paramref name="key" /> is null.</exception>
  5761. </member>
  5762. <member name="P:System.Web.Mvc.ValueProviderDictionary.Values">
  5763. <summary>Gets a collection that contains the values in the <see cref="T:System.Collections.Generic.IDictionary`2" /> object.</summary>
  5764. <returns>A collection of the values in the object that implements the <see cref="T:System.Collections.Generic.IDictionary`2" /> interface.</returns>
  5765. </member>
  5766. <member name="T:System.Web.Mvc.ValueProviderFactories">
  5767. <summary>Represents a container for value-provider factory objects.</summary>
  5768. </member>
  5769. <member name="P:System.Web.Mvc.ValueProviderFactories.Factories">
  5770. <summary>Gets the collection of value-provider factories for the application.</summary>
  5771. <returns>The collection of value-provider factory objects.</returns>
  5772. </member>
  5773. <member name="T:System.Web.Mvc.ValueProviderFactory">
  5774. <summary>Represents a factory for creating value-provider objects.</summary>
  5775. </member>
  5776. <member name="M:System.Web.Mvc.ValueProviderFactory.#ctor">
  5777. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ValueProviderFactory" /> class.</summary>
  5778. </member>
  5779. <member name="M:System.Web.Mvc.ValueProviderFactory.GetValueProvider(System.Web.Mvc.ControllerContext)">
  5780. <summary>Returns a value-provider object for the specified controller context.</summary>
  5781. <returns>A value-provider object.</returns>
  5782. <param name="controllerContext">An object that encapsulates information about the current HTTP request.</param>
  5783. </member>
  5784. <member name="T:System.Web.Mvc.ValueProviderFactoryCollection">
  5785. <summary>Represents the collection of value-provider factories for the application.</summary>
  5786. </member>
  5787. <member name="M:System.Web.Mvc.ValueProviderFactoryCollection.#ctor">
  5788. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ValueProviderFactoryCollection" /> class.</summary>
  5789. </member>
  5790. <member name="M:System.Web.Mvc.ValueProviderFactoryCollection.#ctor(System.Collections.Generic.IList{System.Web.Mvc.ValueProviderFactory})">
  5791. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ValueProviderFactoryCollection" /> class using the specified list of value-provider factories.</summary>
  5792. <param name="list">A list of value-provider factories to initialize the collection with.</param>
  5793. </member>
  5794. <member name="M:System.Web.Mvc.ValueProviderFactoryCollection.GetValueProvider(System.Web.Mvc.ControllerContext)">
  5795. <summary>Returns the value-provider factory for the specified controller context.</summary>
  5796. <returns>The value-provider factory object for the specified controller context.</returns>
  5797. <param name="controllerContext">An object that encapsulates information about the current HTTP request.</param>
  5798. </member>
  5799. <member name="M:System.Web.Mvc.ValueProviderFactoryCollection.InsertItem(System.Int32,System.Web.Mvc.ValueProviderFactory)">
  5800. <summary>Inserts the specified value-provider factory object at the specified index location.</summary>
  5801. <param name="index">The zero-based index location at which to insert the value provider into the collection.</param>
  5802. <param name="item">The value-provider factory object to insert.</param>
  5803. <exception cref="ArgumentNullException">The <paramref name="item" /> parameter is null.</exception>
  5804. </member>
  5805. <member name="M:System.Web.Mvc.ValueProviderFactoryCollection.SetItem(System.Int32,System.Web.Mvc.ValueProviderFactory)">
  5806. <summary>Sets the specified value-provider factory object at the given index location.</summary>
  5807. <param name="index">The zero-based index location at which to insert the value provider into the collection.</param>
  5808. <param name="item">The value-provider factory object to set.</param>
  5809. <exception cref="ArgumentNullException">The <paramref name="item" /> parameter is null.</exception>
  5810. </member>
  5811. <member name="T:System.Web.Mvc.ValueProviderResult">
  5812. <summary>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.</summary>
  5813. </member>
  5814. <member name="M:System.Web.Mvc.ValueProviderResult.#ctor">
  5815. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ValueProviderResult" /> class.</summary>
  5816. </member>
  5817. <member name="M:System.Web.Mvc.ValueProviderResult.#ctor(System.Object,System.String,System.Globalization.CultureInfo)">
  5818. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ValueProviderResult" /> class by using the specified raw value, attempted value, and culture information.</summary>
  5819. <param name="rawValue">The raw value.</param>
  5820. <param name="attemptedValue">The attempted value.</param>
  5821. <param name="culture">The culture.</param>
  5822. </member>
  5823. <member name="P:System.Web.Mvc.ValueProviderResult.AttemptedValue">
  5824. <summary>Gets or sets the raw value that is converted to a string for display.</summary>
  5825. <returns>The raw value.</returns>
  5826. </member>
  5827. <member name="M:System.Web.Mvc.ValueProviderResult.ConvertTo(System.Type)">
  5828. <summary>Converts the value that is encapsulated by this result to the specified type.</summary>
  5829. <returns>The converted value.</returns>
  5830. <param name="type">The target type.</param>
  5831. <exception cref="T:System.ArgumentNullException">The <paramref name="type" /> parameter is null.</exception>
  5832. </member>
  5833. <member name="M:System.Web.Mvc.ValueProviderResult.ConvertTo(System.Type,System.Globalization.CultureInfo)">
  5834. <summary>Converts the value that is encapsulated by this result to the specified type by using the specified culture information.</summary>
  5835. <returns>The converted value.</returns>
  5836. <param name="type">The target type.</param>
  5837. <param name="culture">The culture to use in the conversion.</param>
  5838. <exception cref="T:System.ArgumentNullException">The <paramref name="type" /> parameter is null.</exception>
  5839. </member>
  5840. <member name="P:System.Web.Mvc.ValueProviderResult.Culture">
  5841. <summary>Gets or sets the culture.</summary>
  5842. <returns>The culture.</returns>
  5843. </member>
  5844. <member name="P:System.Web.Mvc.ValueProviderResult.RawValue">
  5845. <summary>Gets or set the raw value that is supplied by the value provider.</summary>
  5846. <returns>The raw value.</returns>
  5847. </member>
  5848. <member name="T:System.Web.Mvc.ViewContext">
  5849. <summary>Encapsulates information that is related to rendering a view.</summary>
  5850. </member>
  5851. <member name="M:System.Web.Mvc.ViewContext.#ctor">
  5852. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ViewContext" /> class.</summary>
  5853. </member>
  5854. <member name="M:System.Web.Mvc.ViewContext.#ctor(System.Web.Mvc.ControllerContext,System.Web.Mvc.IView,System.Web.Mvc.ViewDataDictionary,System.Web.Mvc.TempDataDictionary,System.IO.TextWriter)">
  5855. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ViewContext" /> class by using the specified controller context, view, view data dictionary, temporary data dictionary, and text writer.</summary>
  5856. <param name="controllerContext">Encapsulates information about the HTTP request.</param>
  5857. <param name="view">The view to render.</param>
  5858. <param name="viewData">The dictionary that contains the data that is required in order to render the view.</param>
  5859. <param name="tempData">The dictionary that contains temporary data for the view.</param>
  5860. <param name="writer">The text writer object that is used to write HTML output.</param>
  5861. <exception cref="T:System.ArgumentNullException">One of the parameters is null.</exception>
  5862. </member>
  5863. <member name="P:System.Web.Mvc.ViewContext.ClientValidationEnabled">
  5864. <summary>Gets or sets a value that indicates whether client-side validation is enabled.</summary>
  5865. <returns>true if client-side validation is enabled; otherwise, false.</returns>
  5866. </member>
  5867. <member name="P:System.Web.Mvc.ViewContext.FormContext">
  5868. <summary>Gets or sets an object that encapsulates information that is required in order to validate and process the input data from an HTML form.</summary>
  5869. <returns>An object that encapsulates information that is required in order to validate and process the input data from an HTML form.</returns>
  5870. </member>
  5871. <member name="M:System.Web.Mvc.ViewContext.OutputClientValidation">
  5872. <summary>Writes the client validation information to the HTTP response.</summary>
  5873. </member>
  5874. <member name="P:System.Web.Mvc.ViewContext.TempData">
  5875. <summary>Gets data that is associated with this request and that is available for only one request.</summary>
  5876. <returns>The temporary data.</returns>
  5877. </member>
  5878. <member name="P:System.Web.Mvc.ViewContext.UnobtrusiveJavaScriptEnabled"></member>
  5879. <member name="P:System.Web.Mvc.ViewContext.View">
  5880. <summary>Gets an object that implements the <see cref="T:System.Web.Mvc.IView" /> interface to render in the browser.</summary>
  5881. <returns>The view.</returns>
  5882. </member>
  5883. <member name="P:System.Web.Mvc.ViewContext.ViewData">
  5884. <summary>Gets the view data that is passed to the view.</summary>
  5885. <returns>The view data.</returns>
  5886. </member>
  5887. <member name="P:System.Web.Mvc.ViewContext.Writer">
  5888. <summary>Gets or sets the text writer object that is used to write HTML output.</summary>
  5889. <returns>The object that is used to write the HTML output.</returns>
  5890. </member>
  5891. <member name="T:System.Web.Mvc.ViewDataDictionary">
  5892. <summary>Represents a container that is used to pass data between a controller and a view.</summary>
  5893. </member>
  5894. <member name="M:System.Web.Mvc.ViewDataDictionary.#ctor">
  5895. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ViewDataDictionary" /> class.</summary>
  5896. </member>
  5897. <member name="M:System.Web.Mvc.ViewDataDictionary.#ctor(System.Object)">
  5898. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ViewDataDictionary" /> class by using the specified model.</summary>
  5899. <param name="model">The model.</param>
  5900. </member>
  5901. <member name="M:System.Web.Mvc.ViewDataDictionary.#ctor(System.Web.Mvc.ViewDataDictionary)">
  5902. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ViewDataDictionary" /> class by using the specified dictionary.</summary>
  5903. <param name="dictionary">The dictionary.</param>
  5904. <exception cref="T:System.ArgumentNullException">The <paramref name="dictionary" /> parameter is null.</exception>
  5905. </member>
  5906. <member name="M:System.Web.Mvc.ViewDataDictionary.Add(System.Collections.Generic.KeyValuePair{System.String,System.Object})">
  5907. <summary>Adds the specified item to the collection.</summary>
  5908. <param name="item">The object to add to the collection.</param>
  5909. <exception cref="T:System.NotSupportedException">The collection is read-only.</exception>
  5910. </member>
  5911. <member name="M:System.Web.Mvc.ViewDataDictionary.Add(System.String,System.Object)">
  5912. <summary>Adds an element to the collection using the specified key and value .</summary>
  5913. <param name="key">The key of the element to add.</param>
  5914. <param name="value">The value of the element to add.</param>
  5915. <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.IDictionary`2" /> object is read-only.</exception>
  5916. <exception cref="T:System.ArgumentNullException">
  5917. <paramref name="key" /> is null.</exception>
  5918. <exception cref="T:System.ArgumentException">An element with the same key already exists in the <see cref="T:System.Collections.Generic.IDictionary`2" /> object.</exception>
  5919. </member>
  5920. <member name="M:System.Web.Mvc.ViewDataDictionary.Clear">
  5921. <summary>Removes all items from the collection.</summary>
  5922. <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.ICollection`1" /> object is read-only.</exception>
  5923. </member>
  5924. <member name="M:System.Web.Mvc.ViewDataDictionary.Contains(System.Collections.Generic.KeyValuePair{System.String,System.Object})">
  5925. <summary>Determines whether the collection contains the specified item.</summary>
  5926. <returns>true if <paramref name="item" /> is found in the collection; otherwise, false.</returns>
  5927. <param name="item">The object to locate in the collection.</param>
  5928. </member>
  5929. <member name="M:System.Web.Mvc.ViewDataDictionary.ContainsKey(System.String)">
  5930. <summary>Determines whether the collection contains an element that has the specified key.</summary>
  5931. <returns>true if the collection contains an element that has the specified key; otherwise, false.</returns>
  5932. <param name="key">The key of the element to locate in the collection.</param>
  5933. <exception cref="T:System.ArgumentNullException">
  5934. <paramref name="key" /> is null.</exception>
  5935. </member>
  5936. <member name="M:System.Web.Mvc.ViewDataDictionary.CopyTo(System.Collections.Generic.KeyValuePair{System.String,System.Object}[],System.Int32)">
  5937. <summary>Copies the elements of the collection to an array, starting at a particular index.</summary>
  5938. <param name="array">The one-dimensional array that is the destination of the elements copied from the collection. The array must have zero-based indexing.</param>
  5939. <param name="arrayIndex">The zero-based index in <paramref name="array" /> at which copying begins.</param>
  5940. <exception cref="T:System.ArgumentNullException">
  5941. <paramref name="array" /> is null.</exception>
  5942. <exception cref="T:System.ArgumentOutOfRangeException">
  5943. <paramref name="arrayIndex" /> is less than 0.</exception>
  5944. <exception cref="T:System.ArgumentException">
  5945. <paramref name="array" /> is multidimensional.-or- <paramref name="arrayIndex" /> is equal to or greater than the length of <paramref name="array" />.-or- The number of elements in the source collection is greater than the available space from <paramref name="arrayIndex" /> to the end of the destination <paramref name="array" />.-or- Type <paramref name="T" /> cannot be cast automatically to the type of the destination <paramref name="array" />.</exception>
  5946. </member>
  5947. <member name="P:System.Web.Mvc.ViewDataDictionary.Count">
  5948. <summary>Gets the number of elements in the collection.</summary>
  5949. <returns>The number of elements in the collection.</returns>
  5950. </member>
  5951. <member name="M:System.Web.Mvc.ViewDataDictionary.Eval(System.String)">
  5952. <summary>Evaluates the specified expression.</summary>
  5953. <returns>The results of the evaluation.</returns>
  5954. <param name="expression">The expression.</param>
  5955. <exception cref="T:System.ArgumentException">The <paramref name="expression" /> parameter is null or empty.</exception>
  5956. </member>
  5957. <member name="M:System.Web.Mvc.ViewDataDictionary.Eval(System.String,System.String)">
  5958. <summary>Evaluates the specified expression by using the specified format.</summary>
  5959. <returns>The results of the evaluation.</returns>
  5960. <param name="expression">The expression.</param>
  5961. <param name="format">The format.</param>
  5962. </member>
  5963. <member name="M:System.Web.Mvc.ViewDataDictionary.GetEnumerator">
  5964. <summary>Returns an enumerator that can be used to iterate through the collection.</summary>
  5965. <returns>An enumerator that can be used to iterate through the collection.</returns>
  5966. </member>
  5967. <member name="M:System.Web.Mvc.ViewDataDictionary.GetViewDataInfo(System.String)">
  5968. <summary>Returns information about the view data as defined by the <paramref name="expression" /> parameter.</summary>
  5969. <returns>An object that contains the view data information that is defined by the <paramref name="expression" /> parameter.</returns>
  5970. <param name="expression">A set of key/value pairs that define the view-data information to return.</param>
  5971. <exception cref="T:System.ArgumentException">The <paramref name="expression" /> parameter is either null or empty.</exception>
  5972. </member>
  5973. <member name="P:System.Web.Mvc.ViewDataDictionary.IsReadOnly">
  5974. <summary>Gets a value that indicates whether the collection is read-only.</summary>
  5975. <returns>true if the collection is read-only; otherwise, false.</returns>
  5976. </member>
  5977. <member name="P:System.Web.Mvc.ViewDataDictionary.Item(System.String)">
  5978. <summary>Gets or sets the item that is associated with the specified key.</summary>
  5979. <returns>The value of the selected item.</returns>
  5980. <param name="key">The key.</param>
  5981. </member>
  5982. <member name="P:System.Web.Mvc.ViewDataDictionary.Keys">
  5983. <summary>Gets a collection that contains the keys of this dictionary.</summary>
  5984. <returns>A collection that contains the keys of the object that implements <see cref="T:System.Collections.Generic.IDictionary`2" />.</returns>
  5985. </member>
  5986. <member name="P:System.Web.Mvc.ViewDataDictionary.Model">
  5987. <summary>Gets or sets the model that is associated with the view data.</summary>
  5988. <returns>The model that is associated with the view data.</returns>
  5989. </member>
  5990. <member name="P:System.Web.Mvc.ViewDataDictionary.ModelMetadata">
  5991. <summary>Gets or sets information about the model.</summary>
  5992. <returns>Information about the model.</returns>
  5993. </member>
  5994. <member name="P:System.Web.Mvc.ViewDataDictionary.ModelState">
  5995. <summary>Gets the state of the model.</summary>
  5996. <returns>The state of the model.</returns>
  5997. </member>
  5998. <member name="M:System.Web.Mvc.ViewDataDictionary.Remove(System.Collections.Generic.KeyValuePair{System.String,System.Object})">
  5999. <summary>Removes the first occurrence of a specified object from the collection.</summary>
  6000. <returns>true if <paramref name="item" /> was successfully removed from the collection; otherwise, false. This method also returns false if <paramref name="item" /> is not found in the collection.</returns>
  6001. <param name="item">The object to remove from the collection.</param>
  6002. <exception cref="T:System.NotSupportedException">The collection is read-only.</exception>
  6003. </member>
  6004. <member name="M:System.Web.Mvc.ViewDataDictionary.Remove(System.String)">
  6005. <summary>Removes the element from the collection using the specified key.</summary>
  6006. <returns>true if the element is successfully removed; otherwise, false. This method also returns false if <paramref name="key" /> was not found in the original collection.</returns>
  6007. <param name="key">The key of the element to remove.</param>
  6008. <exception cref="T:System.NotSupportedException">The collection is read-only.</exception>
  6009. <exception cref="T:System.ArgumentNullException">
  6010. <paramref name="key" /> is null.</exception>
  6011. </member>
  6012. <member name="M:System.Web.Mvc.ViewDataDictionary.SetModel(System.Object)">
  6013. <summary>Sets the data model to use for the view.</summary>
  6014. <param name="value">The data model to use for the view.</param>
  6015. </member>
  6016. <member name="M:System.Web.Mvc.ViewDataDictionary.System#Collections#IEnumerable#GetEnumerator">
  6017. <summary>Returns an enumerator that can be used to iterate through the collection.</summary>
  6018. <returns>An enumerator that can be used to iterate through the collection.</returns>
  6019. </member>
  6020. <member name="P:System.Web.Mvc.ViewDataDictionary.TemplateInfo">
  6021. <summary>Gets or sets an object that encapsulates information about the current template context.</summary>
  6022. <returns>An object that contains information about the current template.</returns>
  6023. </member>
  6024. <member name="M:System.Web.Mvc.ViewDataDictionary.TryGetValue(System.String,System.Object@)">
  6025. <summary>Attempts to retrieve the value that is associated with the specified key.</summary>
  6026. <returns>true if the collection contains an element with the specified key; otherwise, false.</returns>
  6027. <param name="key">The key of the value to get.</param>
  6028. <param name="value">When this method returns, the value that is associated with the specified key, if the key is found; otherwise, the default value for the type of the <paramref name="value" /> parameter. This parameter is passed uninitialized.</param>
  6029. <exception cref="T:System.ArgumentNullException">
  6030. <paramref name="key" /> is null.</exception>
  6031. </member>
  6032. <member name="P:System.Web.Mvc.ViewDataDictionary.Values">
  6033. <summary>Gets a collection that contains the values in this dictionary.</summary>
  6034. <returns>A collection that contains the values of the object that implements <see cref="T:System.Collections.Generic.IDictionary`2" />.</returns>
  6035. </member>
  6036. <member name="T:System.Web.Mvc.ViewDataDictionary`1">
  6037. <summary>Represents a container that is used to pass strongly typed data between a controller and a view.</summary>
  6038. <typeparam name="TModel">The type of the model.</typeparam>
  6039. </member>
  6040. <member name="M:System.Web.Mvc.ViewDataDictionary`1.#ctor">
  6041. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ViewDataDictionary`1" /> class.</summary>
  6042. </member>
  6043. <member name="M:System.Web.Mvc.ViewDataDictionary`1.#ctor(System.Web.Mvc.ViewDataDictionary)">
  6044. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ViewDataDictionary`1" /> class by using the specified view data dictionary.</summary>
  6045. <param name="viewDataDictionary">An existing view data dictionary to copy into this instance.</param>
  6046. </member>
  6047. <member name="M:System.Web.Mvc.ViewDataDictionary`1.#ctor(`0)">
  6048. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ViewDataDictionary`1" /> class by using the specified model.</summary>
  6049. <param name="model">The data model to use for the view.</param>
  6050. </member>
  6051. <member name="P:System.Web.Mvc.ViewDataDictionary`1.Model">
  6052. <summary>Gets or sets the model.</summary>
  6053. <returns>A reference to the data model.</returns>
  6054. </member>
  6055. <member name="P:System.Web.Mvc.ViewDataDictionary`1.ModelMetadata">
  6056. <summary>Gets or sets information about the model.</summary>
  6057. <returns>Information about the model.</returns>
  6058. </member>
  6059. <member name="M:System.Web.Mvc.ViewDataDictionary`1.SetModel(System.Object)">
  6060. <summary>Sets the data model to use for the view.</summary>
  6061. <param name="value">The data model to use for the view.</param>
  6062. <exception cref="T:System.InvalidOperationException">An error occurred while the model was being set.</exception>
  6063. </member>
  6064. <member name="T:System.Web.Mvc.ViewDataInfo">
  6065. <summary>Encapsulates information about the current template content that is used to develop templates and about HTML helpers that interact with templates.</summary>
  6066. </member>
  6067. <member name="M:System.Web.Mvc.ViewDataInfo.#ctor">
  6068. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ViewDataInfo" /> class.</summary>
  6069. </member>
  6070. <member name="M:System.Web.Mvc.ViewDataInfo.#ctor(System.Func`1)"></member>
  6071. <member name="P:System.Web.Mvc.ViewDataInfo.Container">
  6072. <summary>Gets or sets the object that contains the values to be displayed by the template.</summary>
  6073. <returns>The object that contains the values to be displayed by the template.</returns>
  6074. </member>
  6075. <member name="P:System.Web.Mvc.ViewDataInfo.PropertyDescriptor">
  6076. <summary>Gets or sets the description of the property to be displayed by the template.</summary>
  6077. <returns>The description of the property to be displayed by the template.</returns>
  6078. </member>
  6079. <member name="P:System.Web.Mvc.ViewDataInfo.Value">
  6080. <summary>Gets or sets the current value to be displayed by the template.</summary>
  6081. <returns>The current value to be displayed by the template.</returns>
  6082. </member>
  6083. <member name="T:System.Web.Mvc.ViewEngineCollection">
  6084. <summary>Represents a collection of view engines that are available to the application.</summary>
  6085. </member>
  6086. <member name="M:System.Web.Mvc.ViewEngineCollection.#ctor">
  6087. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ViewEngineCollection" /> class.</summary>
  6088. </member>
  6089. <member name="M:System.Web.Mvc.ViewEngineCollection.#ctor(System.Collections.Generic.IList{System.Web.Mvc.IViewEngine})">
  6090. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ViewEngineCollection" /> class by using the specified list of view engines.</summary>
  6091. <param name="list">The list that is wrapped by the new collection.</param>
  6092. <exception cref="T:System.ArgumentNullException">
  6093. <paramref name="list" /> is null.</exception>
  6094. </member>
  6095. <member name="M:System.Web.Mvc.ViewEngineCollection.FindPartialView(System.Web.Mvc.ControllerContext,System.String)">
  6096. <summary>Finds the specified partial view by using the specified controller context.</summary>
  6097. <returns>The partial view.</returns>
  6098. <param name="controllerContext">The controller context.</param>
  6099. <param name="partialViewName">The name of the partial view.</param>
  6100. <exception cref="T:System.ArgumentNullException">The <paramref name="controllerContext" /> parameter is null.</exception>
  6101. <exception cref="T:System.ArgumentException">The <paramref name="partialViewName" /> parameter is null or empty.</exception>
  6102. </member>
  6103. <member name="M:System.Web.Mvc.ViewEngineCollection.FindView(System.Web.Mvc.ControllerContext,System.String,System.String)">
  6104. <summary>Finds the specified view by using the specified controller context and master view.</summary>
  6105. <returns>The view.</returns>
  6106. <param name="controllerContext">The controller context.</param>
  6107. <param name="viewName">The name of the view.</param>
  6108. <param name="masterName">The name of the master view.</param>
  6109. <exception cref="T:System.ArgumentNullException">The <paramref name="controllerContext" /> parameter is null.</exception>
  6110. <exception cref="T:System.ArgumentException">The <paramref name="viewName" /> parameter is null or empty.</exception>
  6111. </member>
  6112. <member name="M:System.Web.Mvc.ViewEngineCollection.InsertItem(System.Int32,System.Web.Mvc.IViewEngine)">
  6113. <summary>Inserts an element into the collection at the specified index.</summary>
  6114. <param name="index">The zero-based index at which <paramref name="item" /> should be inserted.</param>
  6115. <param name="item">The object to insert. </param>
  6116. <exception cref="T:System.ArgumentOutOfRangeException">
  6117. <paramref name="index" /> is less than zero.-or-<paramref name="index" /> is greater than the number of items in the collection.</exception>
  6118. <exception cref="T:System.ArgumentNullException">The <paramref name="item" /> parameter is null.</exception>
  6119. </member>
  6120. <member name="M:System.Web.Mvc.ViewEngineCollection.SetItem(System.Int32,System.Web.Mvc.IViewEngine)">
  6121. <summary>Replaces the element at the specified index.</summary>
  6122. <param name="index">The zero-based index of the element to replace.</param>
  6123. <param name="item">The new value for the element at the specified index. </param>
  6124. <exception cref="T:System.ArgumentOutOfRangeException">
  6125. <paramref name="index" /> is less than zero.-or-<paramref name="index" /> is greater than the number of items in the collection.</exception>
  6126. <exception cref="T:System.ArgumentNullException">The <paramref name="item" /> parameter is null.</exception>
  6127. </member>
  6128. <member name="T:System.Web.Mvc.ViewEngineResult">
  6129. <summary>Represents the result of locating a view engine.</summary>
  6130. </member>
  6131. <member name="M:System.Web.Mvc.ViewEngineResult.#ctor(System.Collections.Generic.IEnumerable{System.String})">
  6132. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ViewEngineResult" /> class by using the specified searched locations.</summary>
  6133. <param name="searchedLocations">The searched locations.</param>
  6134. <exception cref="T:System.ArgumentNullException">The <paramref name="searchedLocations" /> parameter is null.</exception>
  6135. </member>
  6136. <member name="M:System.Web.Mvc.ViewEngineResult.#ctor(System.Web.Mvc.IView,System.Web.Mvc.IViewEngine)">
  6137. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ViewEngineResult" /> class by using the specified view and view engine.</summary>
  6138. <param name="view">The view.</param>
  6139. <param name="viewEngine">The view engine.</param>
  6140. <exception cref="T:System.ArgumentNullException">The <paramref name="view " />or <paramref name="viewEngine" /> parameter is null.</exception>
  6141. </member>
  6142. <member name="P:System.Web.Mvc.ViewEngineResult.SearchedLocations">
  6143. <summary>Gets or sets the searched locations.</summary>
  6144. <returns>The searched locations.</returns>
  6145. </member>
  6146. <member name="P:System.Web.Mvc.ViewEngineResult.View">
  6147. <summary>Gets or sets the view.</summary>
  6148. <returns>The view.</returns>
  6149. </member>
  6150. <member name="P:System.Web.Mvc.ViewEngineResult.ViewEngine">
  6151. <summary>Gets or sets the view engine.</summary>
  6152. <returns>The view engine.</returns>
  6153. </member>
  6154. <member name="T:System.Web.Mvc.ViewEngines">
  6155. <summary>Represents a collection of view engines that are available to the application.</summary>
  6156. </member>
  6157. <member name="P:System.Web.Mvc.ViewEngines.Engines">
  6158. <summary>Gets the view engines.</summary>
  6159. <returns>The view engines.</returns>
  6160. </member>
  6161. <member name="T:System.Web.Mvc.ViewMasterPage">
  6162. <summary>Represents the information that is needed to build a master view page.</summary>
  6163. </member>
  6164. <member name="M:System.Web.Mvc.ViewMasterPage.#ctor">
  6165. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ViewMasterPage" /> class.</summary>
  6166. </member>
  6167. <member name="P:System.Web.Mvc.ViewMasterPage.Ajax">
  6168. <summary>Gets the AJAX script for the master page.</summary>
  6169. <returns>The AJAX script for the master page.</returns>
  6170. </member>
  6171. <member name="P:System.Web.Mvc.ViewMasterPage.Html">
  6172. <summary>Gets the HTML for the master page.</summary>
  6173. <returns>The HTML for the master page.</returns>
  6174. </member>
  6175. <member name="P:System.Web.Mvc.ViewMasterPage.Model">
  6176. <summary>Gets the model.</summary>
  6177. <returns>The model.</returns>
  6178. </member>
  6179. <member name="P:System.Web.Mvc.ViewMasterPage.TempData">
  6180. <summary>Gets the temporary data.</summary>
  6181. <returns>The temporary data.</returns>
  6182. </member>
  6183. <member name="P:System.Web.Mvc.ViewMasterPage.Url">
  6184. <summary>Gets the URL.</summary>
  6185. <returns>The URL.</returns>
  6186. </member>
  6187. <member name="P:System.Web.Mvc.ViewMasterPage.View"></member>
  6188. <member name="P:System.Web.Mvc.ViewMasterPage.ViewContext">
  6189. <summary>Gets the view context.</summary>
  6190. <returns>The view context.</returns>
  6191. </member>
  6192. <member name="P:System.Web.Mvc.ViewMasterPage.ViewData">
  6193. <summary>Gets the view data.</summary>
  6194. <returns>The view data.</returns>
  6195. </member>
  6196. <member name="P:System.Web.Mvc.ViewMasterPage.Writer">
  6197. <summary>Gets the writer that is used to render the master page.</summary>
  6198. <returns>The writer that is used to render the master page.</returns>
  6199. </member>
  6200. <member name="T:System.Web.Mvc.ViewMasterPage`1">
  6201. <summary>Represents the information that is required in order to build a strongly typed master view page.</summary>
  6202. <typeparam name="TModel">The type of the model.</typeparam>
  6203. </member>
  6204. <member name="M:System.Web.Mvc.ViewMasterPage`1.#ctor">
  6205. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ViewMasterPage`1" /> class.</summary>
  6206. </member>
  6207. <member name="P:System.Web.Mvc.ViewMasterPage`1.Ajax">
  6208. <summary>Gets the AJAX script for the master page.</summary>
  6209. <returns>The AJAX script for the master page.</returns>
  6210. </member>
  6211. <member name="P:System.Web.Mvc.ViewMasterPage`1.Html">
  6212. <summary>Gets the HTML for the master page.</summary>
  6213. <returns>The HTML for the master page.</returns>
  6214. </member>
  6215. <member name="P:System.Web.Mvc.ViewMasterPage`1.Model">
  6216. <summary>Gets the model.</summary>
  6217. <returns>A reference to the data model.</returns>
  6218. </member>
  6219. <member name="P:System.Web.Mvc.ViewMasterPage`1.ViewData">
  6220. <summary>Gets the view data.</summary>
  6221. <returns>The view data.</returns>
  6222. </member>
  6223. <member name="T:System.Web.Mvc.ViewPage">
  6224. <summary>Represents the properties and methods that are needed to render a view as a Web Forms page.</summary>
  6225. </member>
  6226. <member name="M:System.Web.Mvc.ViewPage.#ctor">
  6227. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ViewPage" /> class.</summary>
  6228. </member>
  6229. <member name="P:System.Web.Mvc.ViewPage.Ajax">
  6230. <summary>Gets or sets the <see cref="T:System.Web.Mvc.AjaxHelper" /> object that is used to render HTML in Ajax scenarios.</summary>
  6231. <returns>The Ajax helper object that is associated with the view.</returns>
  6232. </member>
  6233. <member name="P:System.Web.Mvc.ViewPage.Html">
  6234. <summary>Gets or sets the <see cref="T:System.Web.Mvc.HtmlHelper" /> object that is used to render HTML elements.</summary>
  6235. <returns>The HTML helper object that is associated with the view.</returns>
  6236. </member>
  6237. <member name="M:System.Web.Mvc.ViewPage.InitHelpers">
  6238. <summary>Initializes the <see cref="P:System.Web.Mvc.ViewPage.Ajax" />, <see cref="P:System.Web.Mvc.ViewPage.Html" />, and <see cref="P:System.Web.Mvc.ViewPage.Url" /> properties.</summary>
  6239. </member>
  6240. <member name="P:System.Web.Mvc.ViewPage.MasterLocation">
  6241. <summary>Gets or sets the path of the master view.</summary>
  6242. <returns>The path of the master view.</returns>
  6243. </member>
  6244. <member name="P:System.Web.Mvc.ViewPage.Model">
  6245. <summary>Gets the Model property of the associated <see cref="T:System.Web.Mvc.ViewDataDictionary" /> object.</summary>
  6246. <returns>The Model property of the associated <see cref="T:System.Web.Mvc.ViewDataDictionary" /> object.</returns>
  6247. </member>
  6248. <member name="M:System.Web.Mvc.ViewPage.OnPreInit(System.EventArgs)">
  6249. <summary>Raises the <see cref="E:System.Web.UI.Page.PreInit" /> event at the beginning of page initialization.</summary>
  6250. <param name="e">The event data.</param>
  6251. </member>
  6252. <member name="M:System.Web.Mvc.ViewPage.ProcessRequest(System.Web.HttpContext)">
  6253. <summary>Enables processing of the specified HTTP request by the ASP.NET MVC framework.</summary>
  6254. <param name="context">An object that encapsulates HTTP-specific information about the current HTTP request.</param>
  6255. </member>
  6256. <member name="M:System.Web.Mvc.ViewPage.Render(System.Web.UI.HtmlTextWriter)">
  6257. <summary>Initializes the <see cref="T:System.Web.UI.HtmlTextWriter" /> object that receives the page content to be rendered.</summary>
  6258. <param name="writer">The object that receives the page content.</param>
  6259. </member>
  6260. <member name="M:System.Web.Mvc.ViewPage.RenderView(System.Web.Mvc.ViewContext)">
  6261. <summary>Renders the view page to the response using the specified view context.</summary>
  6262. <param name="viewContext">An object that encapsulates the information that is required in order to render the view, which includes the controller context, form context, the temporary data, and the view data for the associated view.</param>
  6263. </member>
  6264. <member name="M:System.Web.Mvc.ViewPage.SetTextWriter(System.IO.TextWriter)">
  6265. <summary>Sets the text writer that is used to render the view to the response.</summary>
  6266. <param name="textWriter">The writer that is used to render the view to the response.</param>
  6267. </member>
  6268. <member name="M:System.Web.Mvc.ViewPage.SetViewData(System.Web.Mvc.ViewDataDictionary)">
  6269. <summary>Sets the view data dictionary for the associated view.</summary>
  6270. <param name="viewData">A dictionary of data to pass to the view.</param>
  6271. </member>
  6272. <member name="P:System.Web.Mvc.ViewPage.TempData">
  6273. <summary>Gets the temporary data to pass to the view.</summary>
  6274. <returns>The temporary data to pass to the view.</returns>
  6275. </member>
  6276. <member name="P:System.Web.Mvc.ViewPage.Url">
  6277. <summary>Gets or sets the URL of the rendered page.</summary>
  6278. <returns>The URL of the rendered page.</returns>
  6279. </member>
  6280. <member name="P:System.Web.Mvc.ViewPage.View"></member>
  6281. <member name="P:System.Web.Mvc.ViewPage.ViewContext">
  6282. <summary>Gets or sets the information that is used to render the view.</summary>
  6283. <returns>The information that is used to render the view, which includes the form context, the temporary data, and the view data of the associated view.</returns>
  6284. </member>
  6285. <member name="P:System.Web.Mvc.ViewPage.ViewData">
  6286. <summary>Gets or sets a dictionary that contains data to pass between the controller and the view.</summary>
  6287. <returns>A dictionary that contains data to pass between the controller and the view.</returns>
  6288. </member>
  6289. <member name="P:System.Web.Mvc.ViewPage.Writer">
  6290. <summary>Gets the text writer that is used to render the view to the response.</summary>
  6291. <returns>The text writer that is used to render the view to the response.</returns>
  6292. </member>
  6293. <member name="T:System.Web.Mvc.ViewPage`1">
  6294. <summary>Represents the information that is required in order to render a strongly typed view as a Web Forms page.</summary>
  6295. <typeparam name="TModel">The type of the model.</typeparam>
  6296. </member>
  6297. <member name="M:System.Web.Mvc.ViewPage`1.#ctor">
  6298. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ViewPage`1" /> class.</summary>
  6299. </member>
  6300. <member name="P:System.Web.Mvc.ViewPage`1.Ajax">
  6301. <summary>Gets or sets the <see cref="T:System.Web.Mvc.AjaxHelper`1" /> object that supports rendering HTML in Ajax scenarios.</summary>
  6302. <returns>The Ajax helper object that is associated with the view.</returns>
  6303. </member>
  6304. <member name="P:System.Web.Mvc.ViewPage`1.Html">
  6305. <summary>Gets or sets the <see cref="T:System.Web.Mvc.HtmlHelper" /> object that provides support for rendering elements.</summary>
  6306. <returns>The HTML helper object that is associated with the view.</returns>
  6307. </member>
  6308. <member name="M:System.Web.Mvc.ViewPage`1.InitHelpers">
  6309. <summary>Instantiates and initializes the <see cref="P:System.Web.Mvc.ViewPage`1.Ajax" /> and <see cref="P:System.Web.Mvc.ViewPage`1.Html" /> properties.</summary>
  6310. </member>
  6311. <member name="P:System.Web.Mvc.ViewPage`1.Model">
  6312. <summary>Gets the <see cref="P:System.Web.Mvc.ViewDataDictionary`1.Model" /> property of the associated <see cref="T:System.Web.Mvc.ViewDataDictionary`1" /> object.</summary>
  6313. <returns>A reference to the data model.</returns>
  6314. </member>
  6315. <member name="M:System.Web.Mvc.ViewPage`1.SetViewData(System.Web.Mvc.ViewDataDictionary)">
  6316. <summary>Sets the view data dictionary for the associated view.</summary>
  6317. <param name="viewData">A dictionary of data to pass to the view.</param>
  6318. </member>
  6319. <member name="P:System.Web.Mvc.ViewPage`1.ViewData">
  6320. <summary>Gets or sets a dictionary that contains data to pass between the controller and the view.</summary>
  6321. <returns>A dictionary that contains data to pass between the controller and the view.</returns>
  6322. </member>
  6323. <member name="T:System.Web.Mvc.ViewResult">
  6324. <summary>Represents a class that is used to render a view by using an <see cref="T:System.Web.Mvc.IView" /> instance that is returned by an <see cref="T:System.Web.Mvc.IViewEngine" /> object.</summary>
  6325. </member>
  6326. <member name="M:System.Web.Mvc.ViewResult.#ctor">
  6327. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ViewResult" /> class.</summary>
  6328. </member>
  6329. <member name="M:System.Web.Mvc.ViewResult.FindView(System.Web.Mvc.ControllerContext)">
  6330. <summary>Searches the registered view engines and returns the object that is used to render the view.</summary>
  6331. <returns>The object that is used to render the view.</returns>
  6332. <param name="context">The controller context.</param>
  6333. <exception cref="T:System.InvalidOperationException">An error occurred while the method was searching for the view.</exception>
  6334. </member>
  6335. <member name="P:System.Web.Mvc.ViewResult.MasterName">
  6336. <summary>Gets the name of the master view (such as a master page or template) to use when the view is rendered.</summary>
  6337. <returns>The name of the master view.</returns>
  6338. </member>
  6339. <member name="T:System.Web.Mvc.ViewResultBase">
  6340. <summary>Represents a base class that is used to provide the model to the view and then render the view to the response.</summary>
  6341. </member>
  6342. <member name="M:System.Web.Mvc.ViewResultBase.#ctor">
  6343. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ViewResultBase" /> class.</summary>
  6344. </member>
  6345. <member name="M:System.Web.Mvc.ViewResultBase.ExecuteResult(System.Web.Mvc.ControllerContext)">
  6346. <summary>When called by the action invoker, renders the view to the response.</summary>
  6347. <param name="context">The context that the result is executed in.</param>
  6348. <exception cref="T:System.ArgumentNullException">The <paramref name="context" /> parameter is null.</exception>
  6349. </member>
  6350. <member name="M:System.Web.Mvc.ViewResultBase.FindView(System.Web.Mvc.ControllerContext)">
  6351. <summary>Returns the <see cref="T:System.Web.Mvc.ViewEngineResult" /> object that is used to render the view.</summary>
  6352. <returns>The view engine.</returns>
  6353. <param name="context">The context.</param>
  6354. </member>
  6355. <member name="P:System.Web.Mvc.ViewResultBase.TempData">
  6356. <summary>Gets or sets the <see cref="T:System.Web.Mvc.TempDataDictionary" /> object for this result.</summary>
  6357. <returns>The temporary data.</returns>
  6358. </member>
  6359. <member name="P:System.Web.Mvc.ViewResultBase.View">
  6360. <summary>Gets or sets the <see cref="T:System.Web.Mvc.IView" /> object that is rendered to the response.</summary>
  6361. <returns>The view.</returns>
  6362. </member>
  6363. <member name="P:System.Web.Mvc.ViewResultBase.ViewData">
  6364. <summary>Gets or sets the view data <see cref="T:System.Web.Mvc.ViewDataDictionary" /> object for this result.</summary>
  6365. <returns>The view data.</returns>
  6366. </member>
  6367. <member name="P:System.Web.Mvc.ViewResultBase.ViewEngineCollection">
  6368. <summary>Gets or sets the collection of view engines that are associated with this result.</summary>
  6369. <returns>The collection of view engines.</returns>
  6370. </member>
  6371. <member name="P:System.Web.Mvc.ViewResultBase.ViewName">
  6372. <summary>Gets or sets the name of the view to render.</summary>
  6373. <returns>The name of the view.</returns>
  6374. </member>
  6375. <member name="T:System.Web.Mvc.ViewStartPage">
  6376. <summary>Provides an abstract class that can be used to implement a view start (master) page.</summary>
  6377. </member>
  6378. <member name="M:System.Web.Mvc.ViewStartPage.#ctor">
  6379. <summary>When implemented in a derived class, initializes a new instance of the <see cref="T:System.Web.Mvc.ViewStartPage" /> class.</summary>
  6380. </member>
  6381. <member name="P:System.Web.Mvc.ViewStartPage.Html">
  6382. <summary>When implemented in a derived class, gets the HTML markup for the view start page.</summary>
  6383. <returns>The HTML markup for the view start page.</returns>
  6384. </member>
  6385. <member name="P:System.Web.Mvc.ViewStartPage.Url">
  6386. <summary>When implemented in a derived class, gets the URL for the view start page.</summary>
  6387. <returns>The URL for the view start page.</returns>
  6388. </member>
  6389. <member name="P:System.Web.Mvc.ViewStartPage.ViewContext">
  6390. <summary>When implemented in a derived class, gets the view context for the view start page.</summary>
  6391. <returns>The view context for the view start page.</returns>
  6392. </member>
  6393. <member name="T:System.Web.Mvc.ViewTemplateUserControl">
  6394. <summary>Provides a container for <see cref="T:System.Web.Mvc.TemplateInfo" /> objects.</summary>
  6395. </member>
  6396. <member name="M:System.Web.Mvc.ViewTemplateUserControl.#ctor">
  6397. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ViewTemplateUserControl" /> class.</summary>
  6398. </member>
  6399. <member name="T:System.Web.Mvc.ViewTemplateUserControl`1">
  6400. <summary>Provides a container for <see cref="T:System.Web.Mvc.TemplateInfo" /> objects.</summary>
  6401. <typeparam name="TModel">The type of the model.</typeparam>
  6402. </member>
  6403. <member name="M:System.Web.Mvc.ViewTemplateUserControl`1.#ctor">
  6404. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ViewTemplateUserControl`1" /> class.</summary>
  6405. </member>
  6406. <member name="P:System.Web.Mvc.ViewTemplateUserControl`1.FormattedModelValue">
  6407. <summary>Gets the formatted value.</summary>
  6408. <returns>The formatted value.</returns>
  6409. </member>
  6410. <member name="T:System.Web.Mvc.ViewType">
  6411. <summary>Represents the type of a view.</summary>
  6412. </member>
  6413. <member name="M:System.Web.Mvc.ViewType.#ctor">
  6414. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ViewType" /> class.</summary>
  6415. </member>
  6416. <member name="P:System.Web.Mvc.ViewType.TypeName">
  6417. <summary>Gets or sets the name of the type.</summary>
  6418. <returns>The name of the type.</returns>
  6419. </member>
  6420. <member name="T:System.Web.Mvc.ViewUserControl">
  6421. <summary>Represents the information that is needed to build a user control.</summary>
  6422. </member>
  6423. <member name="M:System.Web.Mvc.ViewUserControl.#ctor">
  6424. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ViewUserControl" /> class.</summary>
  6425. </member>
  6426. <member name="P:System.Web.Mvc.ViewUserControl.Ajax">
  6427. <summary>Gets the AJAX script for the view.</summary>
  6428. <returns>The AJAX script for the view.</returns>
  6429. </member>
  6430. <member name="M:System.Web.Mvc.ViewUserControl.EnsureViewData">
  6431. <summary>Ensures that view data is added to the <see cref="T:System.Web.Mvc.ViewDataDictionary" /> object of the user control if the view data exists.</summary>
  6432. </member>
  6433. <member name="P:System.Web.Mvc.ViewUserControl.Html">
  6434. <summary>Gets the HTML for the view.</summary>
  6435. <returns>The HTML for the view.</returns>
  6436. </member>
  6437. <member name="P:System.Web.Mvc.ViewUserControl.Model">
  6438. <summary>Gets the model.</summary>
  6439. <returns>The model.</returns>
  6440. </member>
  6441. <member name="M:System.Web.Mvc.ViewUserControl.RenderView(System.Web.Mvc.ViewContext)">
  6442. <summary>Renders the view by using the specified view context.</summary>
  6443. <param name="viewContext">The view context.</param>
  6444. </member>
  6445. <member name="M:System.Web.Mvc.ViewUserControl.SetTextWriter(System.IO.TextWriter)">
  6446. <summary>Sets the text writer that is used to render the view to the response.</summary>
  6447. <param name="textWriter">The writer that is used to render the view to the response.</param>
  6448. </member>
  6449. <member name="M:System.Web.Mvc.ViewUserControl.SetViewData(System.Web.Mvc.ViewDataDictionary)">
  6450. <summary>Sets the view-data dictionary by using the specified view data.</summary>
  6451. <param name="viewData">The view data.</param>
  6452. </member>
  6453. <member name="P:System.Web.Mvc.ViewUserControl.TempData">
  6454. <summary>Gets the temporary-data dictionary.</summary>
  6455. <returns>The temporary-data dictionary.</returns>
  6456. </member>
  6457. <member name="P:System.Web.Mvc.ViewUserControl.Url">
  6458. <summary>Gets the URL for the view.</summary>
  6459. <returns>The URL for the view.</returns>
  6460. </member>
  6461. <member name="P:System.Web.Mvc.ViewUserControl.View"></member>
  6462. <member name="P:System.Web.Mvc.ViewUserControl.ViewContext">
  6463. <summary>Gets or sets the view context.</summary>
  6464. <returns>The view context.</returns>
  6465. </member>
  6466. <member name="P:System.Web.Mvc.ViewUserControl.ViewData">
  6467. <summary>Gets or sets the view-data dictionary.</summary>
  6468. <returns>The view-data dictionary.</returns>
  6469. </member>
  6470. <member name="P:System.Web.Mvc.ViewUserControl.ViewDataKey">
  6471. <summary>Gets or sets the view-data key.</summary>
  6472. <returns>The view-data key.</returns>
  6473. </member>
  6474. <member name="P:System.Web.Mvc.ViewUserControl.Writer">
  6475. <summary>Gets the writer that is used to render the view to the response.</summary>
  6476. <returns>The writer that is used to render the view to the response.</returns>
  6477. </member>
  6478. <member name="T:System.Web.Mvc.ViewUserControl`1">
  6479. <summary>Represents the information that is required in order to build a strongly typed user control.</summary>
  6480. <typeparam name="TModel">The type of the model.</typeparam>
  6481. </member>
  6482. <member name="M:System.Web.Mvc.ViewUserControl`1.#ctor">
  6483. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ViewUserControl`1" /> class.</summary>
  6484. </member>
  6485. <member name="P:System.Web.Mvc.ViewUserControl`1.Ajax">
  6486. <summary>Gets the AJAX script for the view.</summary>
  6487. <returns>The AJAX script for the view.</returns>
  6488. </member>
  6489. <member name="P:System.Web.Mvc.ViewUserControl`1.Html">
  6490. <summary>Gets the HTML for the view.</summary>
  6491. <returns>The HTML for the view.</returns>
  6492. </member>
  6493. <member name="P:System.Web.Mvc.ViewUserControl`1.Model">
  6494. <summary>Gets the model.</summary>
  6495. <returns>A reference to the data model.</returns>
  6496. </member>
  6497. <member name="M:System.Web.Mvc.ViewUserControl`1.SetViewData(System.Web.Mvc.ViewDataDictionary)">
  6498. <summary>Sets the view data for the view.</summary>
  6499. <param name="viewData">The view data.</param>
  6500. </member>
  6501. <member name="P:System.Web.Mvc.ViewUserControl`1.ViewData">
  6502. <summary>Gets or sets the view data.</summary>
  6503. <returns>The view data.</returns>
  6504. </member>
  6505. <member name="T:System.Web.Mvc.VirtualPathProviderViewEngine">
  6506. <summary>Represents an abstract base-class implementation of the <see cref="T:System.Web.Mvc.IViewEngine" /> interface.</summary>
  6507. </member>
  6508. <member name="M:System.Web.Mvc.VirtualPathProviderViewEngine.#ctor">
  6509. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.VirtualPathProviderViewEngine" /> class.</summary>
  6510. </member>
  6511. <member name="P:System.Web.Mvc.VirtualPathProviderViewEngine.AreaMasterLocationFormats">
  6512. <summary>Gets or sets the area-enabled master location formats.</summary>
  6513. <returns>The area-enabled master location formats.</returns>
  6514. </member>
  6515. <member name="P:System.Web.Mvc.VirtualPathProviderViewEngine.AreaPartialViewLocationFormats">
  6516. <summary>Gets or sets the area-enabled partial-view location formats.</summary>
  6517. <returns>The area-enabled partial-view location formats.</returns>
  6518. </member>
  6519. <member name="P:System.Web.Mvc.VirtualPathProviderViewEngine.AreaViewLocationFormats">
  6520. <summary>Gets or sets the area-enabled view location formats.</summary>
  6521. <returns>The area-enabled view location formats.</returns>
  6522. </member>
  6523. <member name="M:System.Web.Mvc.VirtualPathProviderViewEngine.CreatePartialView(System.Web.Mvc.ControllerContext,System.String)">
  6524. <summary>Creates the specified partial view by using the specified controller context.</summary>
  6525. <returns>A reference to the partial view.</returns>
  6526. <param name="controllerContext">The controller context.</param>
  6527. <param name="partialPath">The partial path for the new partial view.</param>
  6528. </member>
  6529. <member name="M:System.Web.Mvc.VirtualPathProviderViewEngine.CreateView(System.Web.Mvc.ControllerContext,System.String,System.String)">
  6530. <summary>Creates the specified view by using the controller context, path of the view, and path of the master view.</summary>
  6531. <returns>A reference to the view.</returns>
  6532. <param name="controllerContext">The controller context.</param>
  6533. <param name="viewPath">The path of the view.</param>
  6534. <param name="masterPath">The path of the master view.</param>
  6535. </member>
  6536. <member name="M:System.Web.Mvc.VirtualPathProviderViewEngine.FileExists(System.Web.Mvc.ControllerContext,System.String)">
  6537. <summary>Returns a value that indicates whether the file is in the specified path by using the specified controller context.</summary>
  6538. <returns>true if the file is in the specified path; otherwise, false.</returns>
  6539. <param name="controllerContext">The controller context.</param>
  6540. <param name="virtualPath">The virtual path.</param>
  6541. </member>
  6542. <member name="P:System.Web.Mvc.VirtualPathProviderViewEngine.FileExtensions">
  6543. <summary>Gets or sets the file-name extensions that are used to locate a view.</summary>
  6544. <returns>The file-name extensions that are used to locate a view.</returns>
  6545. </member>
  6546. <member name="M:System.Web.Mvc.VirtualPathProviderViewEngine.FindPartialView(System.Web.Mvc.ControllerContext,System.String,System.Boolean)">
  6547. <summary>Finds the specified partial view by using the specified controller context.</summary>
  6548. <returns>The partial view.</returns>
  6549. <param name="controllerContext">The controller context.</param>
  6550. <param name="partialViewName">The name of the partial view.</param>
  6551. <param name="useCache">true to use the cached partial view.</param>
  6552. <exception cref="T:System.ArgumentNullException">The <paramref name="controllerContext" /> parameter is null (Nothing in Visual Basic).</exception>
  6553. <exception cref="T:System.ArgumentException">The <paramref name="partialViewName" /> parameter is null or empty.</exception>
  6554. </member>
  6555. <member name="M:System.Web.Mvc.VirtualPathProviderViewEngine.FindView(System.Web.Mvc.ControllerContext,System.String,System.String,System.Boolean)">
  6556. <summary>Finds the specified view by using the specified controller context and master view name.</summary>
  6557. <returns>The page view.</returns>
  6558. <param name="controllerContext">The controller context.</param>
  6559. <param name="viewName">The name of the view.</param>
  6560. <param name="masterName">The name of the master view.</param>
  6561. <param name="useCache">true to use the cached view.</param>
  6562. <exception cref="T:System.ArgumentNullException">The <paramref name="controllerContext" /> parameter is null (Nothing in Visual Basic).</exception>
  6563. <exception cref="T:System.ArgumentException">The <paramref name="viewName" /> parameter is null or empty.</exception>
  6564. </member>
  6565. <member name="P:System.Web.Mvc.VirtualPathProviderViewEngine.MasterLocationFormats">
  6566. <summary>Gets or sets the master location formats.</summary>
  6567. <returns>The master location formats.</returns>
  6568. </member>
  6569. <member name="P:System.Web.Mvc.VirtualPathProviderViewEngine.PartialViewLocationFormats">
  6570. <summary>Gets or sets the partial-view location formats.</summary>
  6571. <returns>The partial-view location formats.</returns>
  6572. </member>
  6573. <member name="M:System.Web.Mvc.VirtualPathProviderViewEngine.ReleaseView(System.Web.Mvc.ControllerContext,System.Web.Mvc.IView)">
  6574. <summary>Releases the specified view by using the specified controller context.</summary>
  6575. <param name="controllerContext">The controller context.</param>
  6576. <param name="view">The view to release.</param>
  6577. </member>
  6578. <member name="P:System.Web.Mvc.VirtualPathProviderViewEngine.ViewLocationCache">
  6579. <summary>Gets or sets the view location cache.</summary>
  6580. <returns>The view location cache.</returns>
  6581. </member>
  6582. <member name="P:System.Web.Mvc.VirtualPathProviderViewEngine.ViewLocationFormats">
  6583. <summary>Gets or sets the view location formats.</summary>
  6584. <returns>The view location formats.</returns>
  6585. </member>
  6586. <member name="P:System.Web.Mvc.VirtualPathProviderViewEngine.VirtualPathProvider">
  6587. <summary>Gets or sets the virtual path provider.</summary>
  6588. <returns>The virtual path provider.</returns>
  6589. </member>
  6590. <member name="T:System.Web.Mvc.WebFormView">
  6591. <summary>Represents the information that is needed to build a Web Forms page in ASP.NET MVC.</summary>
  6592. </member>
  6593. <member name="M:System.Web.Mvc.WebFormView.#ctor(System.Web.Mvc.ControllerContext,System.String)">
  6594. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.WebFormView" /> class using the controller context and view path.</summary>
  6595. <param name="controllerContext">The controller context.</param>
  6596. <param name="viewPath">The view path.</param>
  6597. </member>
  6598. <member name="M:System.Web.Mvc.WebFormView.#ctor(System.Web.Mvc.ControllerContext,System.String,System.String)">
  6599. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.WebFormView" /> class using the controller context, view path, and the path to the master page.</summary>
  6600. <param name="controllerContext">The controller context.</param>
  6601. <param name="viewPath">The view path.</param>
  6602. <param name="masterPath">The path to the master page.</param>
  6603. </member>
  6604. <member name="M:System.Web.Mvc.WebFormView.#ctor(System.Web.Mvc.ControllerContext,System.String,System.String,System.Web.Mvc.IViewPageActivator)">
  6605. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.WebFormView" /> class using the controller context, view path, the path to the master page, and a <see cref="T:System.Web.Mvc.IViewPageActivator" /> instance.</summary>
  6606. <param name="controllerContext">The controller context.</param>
  6607. <param name="viewPath">The view path.</param>
  6608. <param name="masterPath">The path to the master page.</param>
  6609. <param name="viewPageActivator">An instance of the view page activator interface.</param>
  6610. </member>
  6611. <member name="P:System.Web.Mvc.WebFormView.MasterPath">
  6612. <summary>Gets or sets the master path.</summary>
  6613. <returns>The master path.</returns>
  6614. </member>
  6615. <member name="M:System.Web.Mvc.WebFormView.RenderView(System.Web.Mvc.ViewContext,System.IO.TextWriter,System.Object)">
  6616. <summary>Renders the view to the response.</summary>
  6617. <param name="viewContext">An object that encapsulates the information that is required in order to render the view, which includes the controller context, form context, the temporary data, and the view data for the associated view.</param>
  6618. <param name="writer">The text writer object that is used to write HTML output.</param>
  6619. <param name="instance">The view page instance.</param>
  6620. </member>
  6621. <member name="T:System.Web.Mvc.WebFormViewEngine">
  6622. <summary>Represents a view engine that is used to render a Web Forms page to the response.</summary>
  6623. </member>
  6624. <member name="M:System.Web.Mvc.WebFormViewEngine.#ctor">
  6625. <summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.WebFormViewEngine" /> c