Commit fb097a2
Changed files (15)
build
product
third.party
lib
app
asp.net.mvc
gorilla
build/project.build
@@ -1,6 +1,7 @@
<?xml version="1.0" encoding="utf-8" ?>
<project name="gorilla.mvc">
<property name="project.name" value="${project::get-name()}" />
+ <property name="nant.settings.currentframework" value="net-3.5" />
<property name="base.dir" value="${directory::get-parent-directory(project::get-base-directory())}" />
<property name="product.dir" value="${base.dir}\product" />
@@ -9,7 +10,7 @@
<property name="thirdparty.dir" value="${base.dir}\third.party" />
<property name="build.tools.dir" value="${thirdparty.dir}\tools" />
- <property name="build.lib.dir" value="${build.dir}\lib" />
+ <property name="build.lib.dir" value="${thirdparty.dir}\lib" />
<property name="build.compile.dir" value="${build.dir}\compile" />
<property name="build.artifacts.dir" value="${build.dir}\artifacts" />
product/gorilla.mvc/Properties/AssemblyInfo.cs
@@ -1,10 +1,6 @@
using System.Reflection;
-using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
-// General Information about an assembly is controlled through the following
-// set of attributes. Change these attribute values to modify the information
-// associated with an assembly.
[assembly: AssemblyTitle("gorilla.mvc")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
@@ -13,24 +9,7 @@ using System.Runtime.InteropServices;
[assembly: AssemblyCopyright("Copyright © Microsoft 2009")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
-
-// Setting ComVisible to false makes the types in this assembly not visible
-// to COM components. If you need to access a type in this assembly from
-// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]
-
-// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("8f87ee47-dde6-46bd-8c14-25dcb43c36ac")]
-
-// Version information for an assembly consists of the following four values:
-//
-// Major Version
-// Minor Version
-// Build Number
-// Revision
-//
-// You can specify all the values or you can default the Build and Revision Numbers
-// by using the '*' as shown below:
-// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
-[assembly: AssemblyFileVersion("1.0.0.0")]
+[assembly: AssemblyFileVersion("1.0.0.0")]
\ No newline at end of file
product/gorilla.mvc/ConstantExpressionParser.cs
@@ -0,0 +1,18 @@
+using System.Linq.Expressions;
+
+namespace gorilla.mvc
+{
+ public class ConstantExpressionParser : IExpressionParser
+ {
+ public object parse_value_from(Expression expression)
+ {
+ var constant_expression = expression as ConstantExpression;
+ return constant_expression.Value;
+ }
+
+ public bool can_parse(Expression expression)
+ {
+ return (expression is ConstantExpression);
+ }
+ }
+}
\ No newline at end of file
product/gorilla.mvc/EmptyFixture.cs
@@ -0,0 +1,9 @@
+using MbUnit.Framework;
+
+namespace gorilla.mvc
+{
+ [TestFixture]
+ public class EmptyFixture
+ {
+ }
+}
\ No newline at end of file
product/gorilla.mvc/gorilla.mvc.csproj
@@ -39,6 +39,10 @@
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\third.party\lib\test\developwithpassion\developwithpassion.bdd.dll</HintPath>
</Reference>
+ <Reference Include="gorilla.commons.utility, Version=2009.5.12.2030, Culture=neutral, PublicKeyToken=687787ccb6c36c9f, processorArchitecture=MSIL">
+ <SpecificVersion>False</SpecificVersion>
+ <HintPath>..\..\third.party\lib\app\gorilla\gorilla.commons.utility.dll</HintPath>
+ </Reference>
<Reference Include="MbUnit.Framework, Version=2.4.2.175, Culture=neutral, PublicKeyToken=5e72ecd30bc408d5">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\third.party\lib\test\mbunit\MbUnit.Framework.dll</HintPath>
@@ -51,6 +55,16 @@
<Reference Include="System.Core">
<RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference>
+ <Reference Include="System.Web.Abstractions">
+ <RequiredTargetFramework>3.5</RequiredTargetFramework>
+ </Reference>
+ <Reference Include="System.Web.Mvc, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
+ <SpecificVersion>False</SpecificVersion>
+ <HintPath>..\..\third.party\lib\app\asp.net.mvc\System.Web.Mvc.dll</HintPath>
+ </Reference>
+ <Reference Include="System.Web.Routing">
+ <RequiredTargetFramework>3.5</RequiredTargetFramework>
+ </Reference>
<Reference Include="System.Xml.Linq">
<RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference>
@@ -61,7 +75,15 @@
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
+ <Compile Include="ConstantExpressionParser.cs" />
+ <Compile Include="EmptyFixture.cs" />
+ <Compile Include="IExpressionParser.cs" />
+ <Compile Include="MemberExpressionParser.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
+ <Compile Include="Url.cs" />
+ <Compile Include="UrlBuilder.cs" />
+ <Compile Include="UrlHelpers.cs" />
+ <Compile Include="when_building_a_url.cs" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
product/gorilla.mvc/IExpressionParser.cs
@@ -0,0 +1,10 @@
+using System.Linq.Expressions;
+
+namespace gorilla.mvc
+{
+ public interface IExpressionParser
+ {
+ object parse_value_from(Expression expression);
+ bool can_parse(Expression expression);
+ }
+}
\ No newline at end of file
product/gorilla.mvc/MemberExpressionParser.cs
@@ -0,0 +1,18 @@
+using System;
+using System.Linq.Expressions;
+
+namespace gorilla.mvc
+{
+ public class MemberExpressionParser : IExpressionParser
+ {
+ public object parse_value_from(Expression expression)
+ {
+ return Expression.Lambda<Func<object>>(Expression.Convert(expression, typeof (object))).Compile()();
+ }
+
+ public bool can_parse(Expression expression)
+ {
+ return (expression is MemberExpression);
+ }
+ }
+}
\ No newline at end of file
product/gorilla.mvc/Url.cs
@@ -0,0 +1,15 @@
+using System;
+using System.Linq.Expressions;
+using System.Web.Mvc;
+
+namespace gorilla.mvc
+{
+ public class Url
+ {
+ public static string To<Controller>(Expression<Action<Controller>> url) where Controller : IController
+ {
+ var expression = url.Body as MethodCallExpression;
+ return null != expression ? new UrlBuilder().create_url_for<Controller>(expression) : string.Empty;
+ }
+ }
+}
\ No newline at end of file
product/gorilla.mvc/UrlBuilder.cs
@@ -0,0 +1,62 @@
+using System;
+using System.Collections.Generic;
+using System.Linq.Expressions;
+using System.Reflection;
+using System.Text;
+using System.Web.Mvc;
+using Gorilla.Commons.Utility.Extensions;
+
+namespace gorilla.mvc
+{
+ public class UrlBuilder
+ {
+ readonly IDictionary<Type, IExpressionParser> parsers;
+
+ public UrlBuilder()
+ {
+ parsers = new Dictionary<Type, IExpressionParser>
+ {
+ {typeof (ConstantExpression), new ConstantExpressionParser()},
+ {typeof (MemberExpression), new MemberExpressionParser()},
+ };
+ }
+
+ public string create_url_for<Controller>(MethodCallExpression expression) where Controller : IController
+ {
+ var method = expression.Method;
+
+ return @"{0}\{1}{2}".formatted_using(
+ pretty_name_for<Controller>(),
+ method.Name,
+ append_parameters_using(method, expression.Arguments));
+ }
+
+ string append_parameters_using(MethodInfo method, IEnumerable<Expression> expressions)
+ {
+ var builder = new StringBuilder();
+ var i = 0;
+ foreach (var expression in expressions ?? new List<Expression>())
+ {
+ builder.Append((0 == i) ? "?" : "&");
+ builder.AppendFormat("{0}={1}", parameter_name_at_index(method, i), parser_for(expression).parse_value_from(expression));
+ i++;
+ }
+ return builder.ToString();
+ }
+
+ IExpressionParser parser_for(Expression expression)
+ {
+ return parsers[expression.GetType()];
+ }
+
+ string parameter_name_at_index(MethodInfo method, int index)
+ {
+ return method.GetParameters()[index].Name;
+ }
+
+ string pretty_name_for<Controller>() where Controller : IController
+ {
+ return typeof (Controller).Name.Replace("Controller", "");
+ }
+ }
+}
\ No newline at end of file
product/gorilla.mvc/UrlHelpers.cs
@@ -0,0 +1,14 @@
+using System;
+using System.Linq.Expressions;
+using System.Web.Mvc;
+
+namespace gorilla.mvc
+{
+ public static class UrlHelpers
+ {
+ public static string To<Controller>(this UrlHelper helper, Expression<Action<Controller>> url) where Controller : IController
+ {
+ return Url.To(url);
+ }
+ }
+}
\ No newline at end of file
product/gorilla.mvc/when_building_a_url.cs
@@ -0,0 +1,43 @@
+using System;
+using System.Web.Mvc;
+using bdddoc.core;
+using developwithpassion.bdd.contexts;
+using developwithpassion.bdd.mbunit;
+using developwithpassion.bdd.mbunit.standard.observations;
+
+namespace gorilla.mvc
+{
+ [Concern(typeof (Url))]
+ public class when_building_a_url : observations_for_a_static_sut
+ {
+ it should_build_a_url_with_no_parameters =
+ () => Url.To<TestController>(x => x.no_params()).should_be_equal_to(@"Test\no_params");
+
+ it should_build_a_url_with_a_single_parameter =
+ () => Url.To<TestController>(x => x.single_param("mo")).should_be_equal_to(@"Test\single_param?name=mo");
+
+ it should_build_a_url_with_multiple_parameters =
+ () => Url.To<TestController>(x => x.multiple_params(1001, "mo")).should_be_equal_to( @"Test\multiple_params?id=1001&name=mo");
+
+ it should_be_able_to_build_a_url_by_picking_off_a_property_from_another_type =
+ () => Url.To<TestController>(x => x.single_param(new {value = "chicken"}.value)).should_be_equal_to( @"Test\single_param?name=chicken");
+ }
+
+ class TestController : Controller
+ {
+ public void no_params()
+ {
+ throw new NotImplementedException();
+ }
+
+ public void single_param(string name)
+ {
+ throw new NotImplementedException();
+ }
+
+ public void multiple_params(int id, string name)
+ {
+ throw new NotImplementedException();
+ }
+ }
+}
\ No newline at end of file
third.party/lib/app/asp.net.mvc/System.Web.Mvc.dll
Binary file
third.party/lib/app/asp.net.mvc/System.Web.Mvc.xml
@@ -0,0 +1,8178 @@
+<?xml version="1.0"?>
+<doc>
+ <assembly>
+ <name>System.Web.Mvc</name>
+ </assembly>
+ <members>
+ <member name="T:System.Web.Mvc.TempDataDictionary">
+ <summary>
+ Represents a set of data that persists only from one request to the next.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.TempDataDictionary.#ctor">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.TempDataDictionary"/> class.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.TempDataDictionary.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.TempDataDictionary"/> class.
+ </summary>
+ <param name="info">The info.</param>
+ <param name="context">The context.</param>
+ </member>
+ <member name="M:System.Web.Mvc.TempDataDictionary.Load(System.Web.Mvc.ControllerContext,System.Web.Mvc.ITempDataProvider)">
+ <summary>
+ Loads the specified controller context.
+ </summary>
+ <param name="controllerContext">The controller context.</param>
+ <param name="tempDataProvider">The temp data provider.</param>
+ </member>
+ <member name="M:System.Web.Mvc.TempDataDictionary.Save(System.Web.Mvc.ControllerContext,System.Web.Mvc.ITempDataProvider)">
+ <summary>
+ Saves the specified controller context.
+ </summary>
+ <param name="controllerContext">The controller context.</param>
+ <param name="tempDataProvider">The temp data provider.</param>
+ </member>
+ <member name="M:System.Web.Mvc.TempDataDictionary.Add(System.String,System.Object)">
+ <summary>
+ Adds an element with the provided key and value to the <see cref="T:System.Collections.Generic.IDictionary`2"/>.
+ </summary>
+ <param name="key">The object to use as the key of the element to add.</param>
+ <param name="value">The object to use as the value of the element to add.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="key"/> is null.
+ </exception>
+ <exception cref="T:System.ArgumentException">
+ An element with the same key already exists in the <see cref="T:System.Collections.Generic.IDictionary`2"/>.
+ </exception>
+ <exception cref="T:System.NotSupportedException">
+ The <see cref="T:System.Collections.Generic.IDictionary`2"/> is read-only.
+ </exception>
+ </member>
+ <member name="M:System.Web.Mvc.TempDataDictionary.Clear">
+ <summary>
+ Removes all items from the <see cref="T:System.Collections.Generic.ICollection`1"/>.
+ </summary>
+ <exception cref="T:System.NotSupportedException">
+ The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only.
+ </exception>
+ </member>
+ <member name="M:System.Web.Mvc.TempDataDictionary.ContainsKey(System.String)">
+ <summary>
+ Determines whether the <see cref="T:System.Collections.Generic.IDictionary`2"/> contains an element with the specified key.
+ </summary>
+ <param name="key">The key to locate in the <see cref="T:System.Collections.Generic.IDictionary`2"/>.</param>
+ <returns>
+ true if the <see cref="T:System.Collections.Generic.IDictionary`2"/> contains an element with the key; otherwise, false.
+ </returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="key"/> is null.
+ </exception>
+ </member>
+ <member name="M:System.Web.Mvc.TempDataDictionary.ContainsValue(System.Object)">
+ <summary>
+ Determines whether the specified value contains value.
+ </summary>
+ <param name="value">The value.</param>
+ <returns>
+ <c>true</c> if the specified value contains value; otherwise, <c>false</c>.
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.TempDataDictionary.GetEnumerator">
+ <summary>
+ Gets the enumerator.
+ </summary>
+ <returns>The enumerator.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.TempDataDictionary.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>
+ Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> with the data needed to serialize the target object.
+ </summary>
+ <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> to populate with data.</param>
+ <param name="context">The destination (see <see cref="T:System.Runtime.Serialization.StreamingContext"/>) for this serialization.</param>
+ <exception cref="T:System.Security.SecurityException">
+ The caller does not have the required permission.
+ </exception>
+ </member>
+ <member name="M:System.Web.Mvc.TempDataDictionary.Remove(System.String)">
+ <summary>
+ Removes the element with the specified key from the <see cref="T:System.Collections.Generic.IDictionary`2"/>.
+ </summary>
+ <param name="key">The key of the element to remove.</param>
+ <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 <see cref="T:System.Collections.Generic.IDictionary`2"/>.
+ </returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="key"/> is null.
+ </exception>
+ <exception cref="T:System.NotSupportedException">
+ The <see cref="T:System.Collections.Generic.IDictionary`2"/> is read-only.
+ </exception>
+ </member>
+ <member name="M:System.Web.Mvc.TempDataDictionary.TryGetValue(System.String,System.Object@)">
+ <summary>
+ Gets the value associated with the specified key.
+ </summary>
+ <param name="key">The key whose value to get.</param>
+ <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>
+ <returns>
+ true if the object that implements <see cref="T:System.Collections.Generic.IDictionary`2"/> contains an element with the specified key; otherwise, false.
+ </returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="key"/> is null.
+ </exception>
+ </member>
+ <member name="M:System.Web.Mvc.TempDataDictionary.System#Collections#Generic#IEnumerable{System#Collections#Generic#KeyValuePair{System#String@System#Object}}#GetEnumerator">
+ <summary>
+ Returns an enumerator that iterates through the collection.
+ </summary>
+ <returns>
+ A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection.
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.TempDataDictionary.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{System#String@System#Object}}#CopyTo(System.Collections.Generic.KeyValuePair{System.String,System.Object}[],System.Int32)">
+ <summary>
+ Copies to the given array at the specified index location.
+ </summary>
+ <param name="array">The array.</param>
+ <param name="index">The index.</param>
+ </member>
+ <member name="M:System.Web.Mvc.TempDataDictionary.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{System#String@System#Object}}#Add(System.Collections.Generic.KeyValuePair{System.String,System.Object})">
+ <summary>
+ Adds the specified key value pair.
+ </summary>
+ <param name="keyValuePair">The key value pair.</param>
+ </member>
+ <member name="M:System.Web.Mvc.TempDataDictionary.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{System#String@System#Object}}#Contains(System.Collections.Generic.KeyValuePair{System.String,System.Object})">
+ <summary>
+ Determines whether [contains] [the specified key value pair].
+ </summary>
+ <param name="keyValuePair">The key value pair.</param>
+ <returns>
+ <c>true</c> if [contains] [the specified key value pair]; otherwise, <c>false</c>.
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.TempDataDictionary.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{System#String@System#Object}}#Remove(System.Collections.Generic.KeyValuePair{System.String,System.Object})">
+ <summary>
+ Removes the specified key value pair.
+ </summary>
+ <param name="keyValuePair">The key value pair.</param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Web.Mvc.TempDataDictionary.System#Collections#IEnumerable#GetEnumerator">
+ <summary>
+ Returns an enumerator that iterates through a collection.
+ </summary>
+ <returns>
+ An <see cref="T:System.Collections.IEnumerator"/> object that can be used to iterate through the collection.
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.TempDataDictionary.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>
+ Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo"/> with the data needed to serialize the target object.
+ </summary>
+ <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> to populate with data.</param>
+ <param name="context">The destination (see <see cref="T:System.Runtime.Serialization.StreamingContext"/>) for this serialization.</param>
+ <exception cref="T:System.Security.SecurityException">
+ The caller does not have the required permission.
+ </exception>
+ </member>
+ <member name="P:System.Web.Mvc.TempDataDictionary.Count">
+ <summary>
+ Gets the number of elements contained in the <see cref="T:System.Collections.Generic.ICollection`1"/>.
+ </summary>
+ <value></value>
+ <returns>
+ The number of elements contained in the <see cref="T:System.Collections.Generic.ICollection`1"/>.
+ </returns>
+ </member>
+ <member name="P:System.Web.Mvc.TempDataDictionary.Keys">
+ <summary>
+ Gets an <see cref="T:System.Collections.Generic.ICollection`1"/> containing the keys of the <see cref="T:System.Collections.Generic.IDictionary`2"/>.
+ </summary>
+ <value></value>
+ <returns>
+ An <see cref="T:System.Collections.Generic.ICollection`1"/> containing the keys of the object that implements <see cref="T:System.Collections.Generic.IDictionary`2"/>.
+ </returns>
+ </member>
+ <member name="P:System.Web.Mvc.TempDataDictionary.Values">
+ <summary>
+ Gets an <see cref="T:System.Collections.Generic.ICollection`1"/> containing the values in the <see cref="T:System.Collections.Generic.IDictionary`2"/>.
+ </summary>
+ <value></value>
+ <returns>
+ An <see cref="T:System.Collections.Generic.ICollection`1"/> containing the values in the object that implements <see cref="T:System.Collections.Generic.IDictionary`2"/>.
+ </returns>
+ </member>
+ <member name="P:System.Web.Mvc.TempDataDictionary.Item(System.String)">
+ <summary>
+ Gets or sets the <see cref="T:System.Object"/> with the specified key.
+ </summary>
+ <value></value>
+ </member>
+ <member name="P:System.Web.Mvc.TempDataDictionary.System#Collections#Generic#IDictionary{System#String@System#Object}#Keys">
+ <summary>
+ Gets an <see cref="T:System.Collections.Generic.ICollection`1"/> containing the keys of the <see cref="T:System.Collections.Generic.IDictionary`2"/>.
+ </summary>
+ <value></value>
+ <returns>
+ An <see cref="T:System.Collections.Generic.ICollection`1"/> containing the keys of the object that implements <see cref="T:System.Collections.Generic.IDictionary`2"/>.
+ </returns>
+ </member>
+ <member name="P:System.Web.Mvc.TempDataDictionary.System#Collections#Generic#IDictionary{System#String@System#Object}#Values">
+ <summary>
+ Gets an <see cref="T:System.Collections.Generic.ICollection`1"/> containing the values in the <see cref="T:System.Collections.Generic.IDictionary`2"/>.
+ </summary>
+ <value></value>
+ <returns>
+ An <see cref="T:System.Collections.Generic.ICollection`1"/> containing the values in the object that implements <see cref="T:System.Collections.Generic.IDictionary`2"/>.
+ </returns>
+ </member>
+ <member name="P:System.Web.Mvc.TempDataDictionary.System#Collections#Generic#ICollection{System#Collections#Generic#KeyValuePair{System#String@System#Object}}#IsReadOnly">
+ <summary>
+ Gets a value indicating whether the <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only.
+ </summary>
+ <value></value>
+ <returns>true if the <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only; otherwise, false.
+ </returns>
+ </member>
+ <member name="T:System.Web.Mvc.IController">
+ <summary>
+ Defines the methods required for a controller.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.IController.Execute(System.Web.Routing.RequestContext)">
+ <summary>
+ Executes the specified request context.
+ </summary>
+ <param name="requestContext">The request context.</param>
+ </member>
+ <member name="T:System.Web.Mvc.AjaxHelper">
+ <summary>
+ Represents support for rendering HTML in AJAX scenarios within a view.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.AjaxHelper.#ctor(System.Web.Mvc.ViewContext,System.Web.Mvc.IViewDataContainer)">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.AjaxHelper"/> class.
+ </summary>
+ <param name="viewContext">The view context.</param>
+ <param name="viewDataContainer">The view data container.</param>
+ </member>
+ <member name="M:System.Web.Mvc.AjaxHelper.#ctor(System.Web.Mvc.ViewContext,System.Web.Mvc.IViewDataContainer,System.Web.Routing.RouteCollection)">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.AjaxHelper"/> class.
+ </summary>
+ <param name="viewContext">The view context.</param>
+ <param name="viewDataContainer">The view data container.</param>
+ <param name="routeCollection">The route collection.</param>
+ </member>
+ <member name="P:System.Web.Mvc.AjaxHelper.RouteCollection">
+ <summary>
+ Gets the collection of routes.
+ </summary>
+ <value>The route collection.</value>
+ </member>
+ <member name="P:System.Web.Mvc.AjaxHelper.ViewContext">
+ <summary>
+ Gets the current <see cref="T:System.Web.Mvc.ViewContext"/>.
+ </summary>
+ <value>The view context.</value>
+ </member>
+ <member name="P:System.Web.Mvc.AjaxHelper.ViewData">
+ <summary>
+ Gets the current <see cref="T:System.Web.Mvc.ViewDataDictionary"/>.
+ </summary>
+ <value>The view data.</value>
+ </member>
+ <member name="P:System.Web.Mvc.AjaxHelper.ViewDataContainer">
+ <summary>
+ Gets the current <see cref="T:System.Web.Mvc.IViewDataContainer"/>.
+ </summary>
+ <value>The view data container.</value>
+ </member>
+ <member name="T:System.Web.Mvc.HttpPostedFileBaseModelBinder">
+ <summary>
+ Binds a model to a posted file.
+ </summary>
+ </member>
+ <member name="T:System.Web.Mvc.IModelBinder">
+ <summary>
+ Defines the methods required for a model binder.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.IModelBinder.BindModel(System.Web.Mvc.ControllerContext,System.Web.Mvc.ModelBindingContext)">
+ <summary>
+ Binds the model to a value.
+ </summary>
+ <param name="controllerContext">The controller context.</param>
+ <param name="bindingContext">The binding context.</param>
+ <returns>The bounded value.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.HttpPostedFileBaseModelBinder.BindModel(System.Web.Mvc.ControllerContext,System.Web.Mvc.ModelBindingContext)">
+ <summary>
+ Binds the model.
+ </summary>
+ <param name="controllerContext">The controller context.</param>
+ <param name="bindingContext">The binding context.</param>
+ <returns>The bound value.</returns>
+ </member>
+ <member name="T:System.Web.Mvc.ActionNameAttribute">
+ <summary>
+ Attribute that represents the name of an action method.
+ </summary>
+ </member>
+ <member name="T:System.Web.Mvc.ActionNameSelectorAttribute">
+ <summary>
+ Attribute that affects the selection of an action method.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.ActionNameSelectorAttribute.IsValidName(System.Web.Mvc.ControllerContext,System.String,System.Reflection.MethodInfo)">
+ <summary>
+ Determines whether the action name is valid within specified controller context.
+ </summary>
+ <param name="controllerContext">The controller context.</param>
+ <param name="actionName">The name of the action.</param>
+ <param name="methodInfo">The method info.</param>
+ <returns>
+ <c>true</c> if the action name is valid within specified controller context; otherwise, <c>false</c>.
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.ActionNameAttribute.#ctor(System.String)">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.ActionNameAttribute"/> class.
+ </summary>
+ <param name="name">The name.</param>
+ </member>
+ <member name="M:System.Web.Mvc.ActionNameAttribute.IsValidName(System.Web.Mvc.ControllerContext,System.String,System.Reflection.MethodInfo)">
+ <summary>
+ Determines whether the action name is valid within specified controller context.
+ </summary>
+ <param name="controllerContext">The controller context.</param>
+ <param name="actionName">The name of the action.</param>
+ <param name="methodInfo">The method info.</param>
+ <returns>
+ <c>true</c> if the action name is valid within specified controller context; otherwise, <c>false</c>.
+ </returns>
+ </member>
+ <member name="P:System.Web.Mvc.ActionNameAttribute.Name">
+ <summary>
+ Gets the name of the action.
+ </summary>
+ <value>The name.</value>
+ </member>
+ <member name="T:System.Web.Mvc.BindAttribute">
+ <summary>
+ Attribute used to provide details on how model binding to a parameter should occur.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.BindAttribute.IsPropertyAllowed(System.String)">
+ <summary>
+ Determines whether [is property allowed] [the specified property name].
+ </summary>
+ <param name="propertyName">Name of the property.</param>
+ <returns>
+ <c>true</c> if [is property allowed] [the specified property name]; otherwise, <c>false</c>.
+ </returns>
+ </member>
+ <member name="P:System.Web.Mvc.BindAttribute.Exclude">
+ <summary>
+ A comma delimited block list of property names for which binding is not allowed.
+ </summary>
+ <value>The exclude list.</value>
+ </member>
+ <member name="P:System.Web.Mvc.BindAttribute.Include">
+ <summary>
+ A comma delimited allow list of property names for which binding is allowed.
+ </summary>
+ <value>The include list.</value>
+ </member>
+ <member name="P:System.Web.Mvc.BindAttribute.Prefix">
+ <summary>
+ Gets or sets the prefix to use when binding to an action argument or model property.
+ </summary>
+ <value>The prefix.</value>
+ </member>
+ <member name="T:System.Web.Mvc.JavaScriptResult">
+ <summary>
+ Class used to send JavaScript content to the response.
+ </summary>
+ </member>
+ <member name="T:System.Web.Mvc.ActionResult">
+ <summary>
+ Encapsulates the result of an action method and is used to perform a
+ framework-level operation on the action method's behalf.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.ActionResult.ExecuteResult(System.Web.Mvc.ControllerContext)">
+ <summary>
+ Enables processing of the result of an action method by a custom type that inherits from <see cref="T:System.Web.Mvc.ActionResult"/>.
+ </summary>
+ <param name="context">The context within which the result is executed.</param>
+ </member>
+ <member name="M:System.Web.Mvc.JavaScriptResult.ExecuteResult(System.Web.Mvc.ControllerContext)">
+ <summary>
+ Enables processing of the result of an action method by a custom type that inherits from <see cref="T:System.Web.Mvc.ActionResult"/>.
+ </summary>
+ <param name="context">The context within which the result is executed.</param>
+ </member>
+ <member name="P:System.Web.Mvc.JavaScriptResult.Script">
+ <summary>
+ Gets or sets the script.
+ </summary>
+ <value>The script.</value>
+ </member>
+ <member name="T:System.Web.Mvc.ActionExecutingContext">
+ <summary>
+ Provides the context for the ActionExecuting method of an <see cref="T:System.Web.Mvc.ActionFilterAttribute"/>.
+ </summary>
+ </member>
+ <member name="T:System.Web.Mvc.ControllerContext">
+ <summary>
+ Encapsulates information about an HTTP request that matches a defined <see cref="T:System.Web.Routing.RouteBase">Route</see> and <see cref="T:System.Web.Mvc.ControllerBase">Controller</see>.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.ControllerContext.#ctor">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.ControllerContext"/> class.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.ControllerContext.#ctor(System.Web.Mvc.ControllerContext)">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.ControllerContext"/> class.
+ </summary>
+ <param name="controllerContext">The controller context.</param>
+ </member>
+ <member name="M:System.Web.Mvc.ControllerContext.#ctor(System.Web.HttpContextBase,System.Web.Routing.RouteData,System.Web.Mvc.ControllerBase)">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.ControllerContext"/> class.
+ </summary>
+ <param name="httpContext">The HTTP context.</param>
+ <param name="routeData">The route data.</param>
+ <param name="controller">The controller.</param>
+ </member>
+ <member name="M:System.Web.Mvc.ControllerContext.#ctor(System.Web.Routing.RequestContext,System.Web.Mvc.ControllerBase)">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.ControllerContext"/> class.
+ </summary>
+ <param name="requestContext">The request context.</param>
+ <param name="controller">The controller.</param>
+ </member>
+ <member name="P:System.Web.Mvc.ControllerContext.Controller">
+ <summary>
+ Gets or sets the controller.
+ </summary>
+ <value>The controller.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ControllerContext.HttpContext">
+ <summary>
+ Gets or sets the HTTP context.
+ </summary>
+ <value>The HTTP context.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ControllerContext.RequestContext">
+ <summary>
+ Gets or sets the request context.
+ </summary>
+ <value>The request context.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ControllerContext.RouteData">
+ <summary>
+ Gets or sets the route data.
+ </summary>
+ <value>The route data.</value>
+ </member>
+ <member name="M:System.Web.Mvc.ActionExecutingContext.#ctor">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.ActionExecutingContext"/> class.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.ActionExecutingContext.#ctor(System.Web.Mvc.ControllerContext,System.Web.Mvc.ActionDescriptor,System.Collections.Generic.IDictionary{System.String,System.Object})">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.ActionExecutingContext"/> class.
+ </summary>
+ <param name="controllerContext">The controller context.</param>
+ <param name="actionDescriptor">The action descriptor.</param>
+ <param name="actionParameters">The action parameters.</param>
+ </member>
+ <member name="P:System.Web.Mvc.ActionExecutingContext.ActionDescriptor">
+ <summary>
+ Gets or sets the action descriptor.
+ </summary>
+ <value>The action descriptor.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ActionExecutingContext.ActionParameters">
+ <summary>
+ Gets or sets the action parameters.
+ </summary>
+ <value>The action parameters.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ActionExecutingContext.Result">
+ <summary>
+ Gets or sets the result.
+ </summary>
+ <value>The result.</value>
+ </member>
+ <member name="T:System.Web.Mvc.ViewResultBase">
+ <summary>
+ Base class used to supply the model to the view and then render the view to the response.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.ViewResultBase.ExecuteResult(System.Web.Mvc.ControllerContext)">
+ <summary>
+ When called by the action invoker, renders the view to the response.
+ </summary>
+ <param name="context">The context within which the result is executed.</param>
+ </member>
+ <member name="M:System.Web.Mvc.ViewResultBase.FindView(System.Web.Mvc.ControllerContext)">
+ <summary>
+ When overridden, returns the <see cref="T:System.Web.Mvc.ViewEngineResult"/> used to render the view.
+ </summary>
+ <param name="context">The context.</param>
+ <returns>The view engine.</returns>
+ </member>
+ <member name="P:System.Web.Mvc.ViewResultBase.TempData">
+ <summary>
+ Gets or sets the <see cref="T:System.Web.Mvc.TempDataDictionary"/> for this result.
+ </summary>
+ <value>The temp data.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ViewResultBase.View">
+ <summary>
+ Gets or sets the <see cref="T:System.Web.Mvc.IView"/> that is rendered to the response.
+ </summary>
+ <value>The view.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ViewResultBase.ViewData">
+ <summary>
+ Gets or sets the view data <see cref="T:System.Web.Mvc.ViewDataDictionary"/> for this result.
+ </summary>
+ <value>The view data.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ViewResultBase.ViewEngineCollection">
+ <summary>
+ Gets or sets the view engines (<see cref="T:System.Web.Mvc.ViewEngineCollection"/>) associated with this result.
+ </summary>
+ <value>The view engine collection.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ViewResultBase.ViewName">
+ <summary>
+ Gets or sets the name of the view to be rendered.
+ </summary>
+ <value>The name of the view.</value>
+ </member>
+ <member name="T:System.Web.Mvc.ViewPage`1">
+ <summary>
+ Represents the information needed to build a strongly typed view page.
+ </summary>
+ <typeparam name="TModel">The type of the model.</typeparam>
+ </member>
+ <member name="T:System.Web.Mvc.ViewPage">
+ <summary>
+ Represents the information needed to build a view page.
+ </summary>
+ </member>
+ <member name="T:System.Web.Mvc.IViewDataContainer">
+ <summary>
+ Defines the methods required for a view data dictionary.
+ </summary>
+ </member>
+ <member name="P:System.Web.Mvc.IViewDataContainer.ViewData">
+ <summary>
+ Gets or sets the view data.
+ </summary>
+ <value>The view data.</value>
+ </member>
+ <member name="M:System.Web.Mvc.ViewPage.InitHelpers">
+ <summary>
+ Instantiates and initializes the Ajax, Html, and Url properties.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.ViewPage.OnPreInit(System.EventArgs)">
+ <summary>
+ Raises the <see cref="E:System.Web.UI.Page.PreInit"/> event at the beginning of page initialization.
+ </summary>
+ <param name="e">An <see cref="T:System.EventArgs"/> that contains the event data.</param>
+ </member>
+ <member name="M:System.Web.Mvc.ViewPage.Render(System.Web.UI.HtmlTextWriter)">
+ <summary>
+ Initializes the <see cref="T:System.Web.UI.HtmlTextWriter"/> object and calls on the child controls of the <see cref="T:System.Web.UI.Page"/> to render.
+ </summary>
+ <param name="writer">The <see cref="T:System.Web.UI.HtmlTextWriter"/> that receives the page content.</param>
+ </member>
+ <member name="M:System.Web.Mvc.ViewPage.RenderView(System.Web.Mvc.ViewContext)">
+ <summary>
+ Renders the view page to the response.
+ </summary>
+ <param name="viewContext">The view context.</param>
+ </member>
+ <member name="M:System.Web.Mvc.ViewPage.SetViewData(System.Web.Mvc.ViewDataDictionary)">
+ <summary>
+ Sets the view data.
+ </summary>
+ <param name="viewData">The view data.</param>
+ </member>
+ <member name="P:System.Web.Mvc.ViewPage.Ajax">
+ <summary>
+ Returns an <see cref="T:System.Web.Mvc.AjaxHelper"/> containing methods useful for AJAX scenarios.
+ </summary>
+ <value>The ajax.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ViewPage.Html">
+ <summary>
+ Returns an <see cref="T:System.Web.Mvc.HtmlHelper"/> containing methods useful for rendering HTML elements.
+ </summary>
+ <value>The HTML.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ViewPage.MasterLocation">
+ <summary>
+ Gets or sets the master location.
+ </summary>
+ <value>The master location.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ViewPage.Model">
+ <summary>
+ Convenience property used to access the Model property of the <see cref="T:System.Web.Mvc.ViewDataDictionary"/>
+ </summary>
+ <value>The model.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ViewPage.TempData">
+ <summary>
+ Gets the temp data.
+ </summary>
+ <value>The temp data.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ViewPage.Url">
+ <summary>
+ Gets or sets the URL.
+ </summary>
+ <value>The URL.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ViewPage.ViewContext">
+ <summary>
+ Gets or sets the view context.
+ </summary>
+ <value>The view context.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ViewPage.ViewData">
+ <summary>
+ Gets or sets the view data.
+ </summary>
+ <value>The view data.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ViewPage.Writer">
+ <summary>
+ Gets the writer.
+ </summary>
+ <value>The writer.</value>
+ </member>
+ <member name="M:System.Web.Mvc.ViewPage`1.InitHelpers">
+ <summary>
+ Instantiates and initializes the Ajax, Html, and Url properties.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.ViewPage`1.SetViewData(System.Web.Mvc.ViewDataDictionary)">
+ <summary>
+ Sets the view data.
+ </summary>
+ <param name="viewData">The view data.</param>
+ </member>
+ <member name="P:System.Web.Mvc.ViewPage`1.Ajax">
+ <summary>
+ Returns an <see cref="T:System.Web.Mvc.AjaxHelper"/> containing methods useful for AJAX scenarios.
+ </summary>
+ <value>The ajax.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ViewPage`1.Html">
+ <summary>
+ Returns an <see cref="T:System.Web.Mvc.HtmlHelper"/> containing methods useful for rendering HTML elements.
+ </summary>
+ <value>The HTML.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ViewPage`1.Model">
+ <summary>
+ Convenience property used to access the Model property of the <see cref="T:System.Web.Mvc.ViewDataDictionary"/>
+ </summary>
+ <value>The model.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ViewPage`1.ViewData">
+ <summary>
+ Gets or sets the view data.
+ </summary>
+ <value>The view data.</value>
+ </member>
+ <member name="T:System.Web.Mvc.MvcRouteHandler">
+ <summary>
+ Creates an object that implement the IHttpHandler interface and gives it the request context.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.MvcRouteHandler.GetHttpHandler(System.Web.Routing.RequestContext)">
+ <summary>
+ Gets the HTTP handler.
+ </summary>
+ <param name="requestContext">The request context.</param>
+ <returns>The HTTP handler.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.MvcRouteHandler.System#Web#Routing#IRouteHandler#GetHttpHandler(System.Web.Routing.RequestContext)">
+ <summary>
+ Gets the HTTP handler.
+ </summary>
+ <param name="requestContext">The request context.</param>
+ <returns>The HTTP handler.</returns>
+ </member>
+ <member name="T:System.Web.Mvc.IViewEngine">
+ <summary>
+ Defines the methods required for a view engine.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.IViewEngine.FindPartialView(System.Web.Mvc.ControllerContext,System.String,System.Boolean)">
+ <summary>
+ Finds the partial view.
+ </summary>
+ <param name="controllerContext">The controller context.</param>
+ <param name="partialViewName">Partial name of the view.</param>
+ <param name="useCache">if set to <c>true</c> [use cache].</param>
+ <returns>The partial view.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.IViewEngine.FindView(System.Web.Mvc.ControllerContext,System.String,System.String,System.Boolean)">
+ <summary>
+ Finds the view.
+ </summary>
+ <param name="controllerContext">The controller context.</param>
+ <param name="viewName">Name of the view.</param>
+ <param name="masterName">Name of the master.</param>
+ <param name="useCache">if set to <c>true</c> [use cache].</param>
+ <returns>The page view.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.IViewEngine.ReleaseView(System.Web.Mvc.ControllerContext,System.Web.Mvc.IView)">
+ <summary>
+ Releases the view.
+ </summary>
+ <param name="controllerContext">The controller context.</param>
+ <param name="view">The view.</param>
+ </member>
+ <member name="T:System.Web.Mvc.MultiSelectList">
+ <summary>
+ Represents a list of items that allows more than one item to be selected.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.MultiSelectList.#ctor(System.Collections.IEnumerable)">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.MultiSelectList"/> class.
+ </summary>
+ <param name="items">The items.</param>
+ </member>
+ <member name="M:System.Web.Mvc.MultiSelectList.#ctor(System.Collections.IEnumerable,System.Collections.IEnumerable)">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.MultiSelectList"/> class.
+ </summary>
+ <param name="items">The items.</param>
+ <param name="selectedValues">The selected values.</param>
+ </member>
+ <member name="M:System.Web.Mvc.MultiSelectList.#ctor(System.Collections.IEnumerable,System.String,System.String)">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.MultiSelectList"/> class.
+ </summary>
+ <param name="items">The items.</param>
+ <param name="dataValueField">The data value field.</param>
+ <param name="dataTextField">The data text field.</param>
+ </member>
+ <member name="M:System.Web.Mvc.MultiSelectList.#ctor(System.Collections.IEnumerable,System.String,System.String,System.Collections.IEnumerable)">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.MultiSelectList"/> class.
+ </summary>
+ <param name="items">The items.</param>
+ <param name="dataValueField">The data value field.</param>
+ <param name="dataTextField">The data text field.</param>
+ <param name="selectedValues">The selected values.</param>
+ </member>
+ <member name="M:System.Web.Mvc.MultiSelectList.GetEnumerator">
+ <summary>
+ Returns an enumerator that iterates through the collection.
+ </summary>
+ <returns>
+ A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection.
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.MultiSelectList.System#Collections#IEnumerable#GetEnumerator">
+ <summary>
+ Returns an enumerator that iterates through a collection.
+ </summary>
+ <returns>
+ An <see cref="T:System.Collections.IEnumerator"/> object that can be used to iterate through the collection.
+ </returns>
+ </member>
+ <member name="P:System.Web.Mvc.MultiSelectList.DataTextField">
+ <summary>
+ Gets the data text field.
+ </summary>
+ <value>The data text field.</value>
+ </member>
+ <member name="P:System.Web.Mvc.MultiSelectList.DataValueField">
+ <summary>
+ Gets the data value field.
+ </summary>
+ <value>The data value field.</value>
+ </member>
+ <member name="P:System.Web.Mvc.MultiSelectList.Items">
+ <summary>
+ Gets the items.
+ </summary>
+ <value>The items.</value>
+ </member>
+ <member name="P:System.Web.Mvc.MultiSelectList.SelectedValues">
+ <summary>
+ Gets the selected values.
+ </summary>
+ <value>The selected values.</value>
+ </member>
+ <member name="T:System.Web.Mvc.Html.FormExtensions">
+ <summary>
+ Represents support for HTML in an application.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.Html.FormExtensions.BeginForm(System.Web.Mvc.HtmlHelper)">
+ <summary>
+ Writes an opening form tag to the response while returning a <see cref="T:System.Web.Mvc.Html.MvcForm"/>
+ instance. Can be used in a using block, in which case it renders the closing form tag at the end of the
+ using block.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <returns>
+ An <see cref="T:System.Web.Mvc.Html.MvcForm"/> instance.
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.FormExtensions.BeginForm(System.Web.Mvc.HtmlHelper,System.Object)">
+ <summary>
+ Writes an opening form tag to the response while returning a <see cref="T:System.Web.Mvc.Html.MvcForm"/>
+ instance. Can be used in a using block, in which case it renders the closing form tag at the end of the
+ using block.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="routeValues">An object containing the parameters for a route. The parameters are retrieved via reflection by examining the properties of the object. Typically created using object initializer syntax.</param>
+ <returns>
+ An <see cref="T:System.Web.Mvc.Html.MvcForm"/> instance.
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.FormExtensions.BeginForm(System.Web.Mvc.HtmlHelper,System.Web.Routing.RouteValueDictionary)">
+ <summary>
+ Writes an opening form tag to the response while returning a <see cref="T:System.Web.Mvc.Html.MvcForm"/>
+ instance. Can be used in a using block, in which case it renders the closing form tag at the end of the
+ using block.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="routeValues">An object containing the parameters for a route.</param>
+ <returns>
+ An <see cref="T:System.Web.Mvc.Html.MvcForm"/> instance.
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.FormExtensions.BeginForm(System.Web.Mvc.HtmlHelper,System.String,System.String)">
+ <summary>
+ Writes an opening form tag to the response while returning a <see cref="T:System.Web.Mvc.Html.MvcForm"/>
+ instance. Can be used in a using block, in which case it renders the closing form tag at the end of the
+ using block.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="actionName">The name of the action.</param>
+ <param name="controllerName">The name of the controller.</param>
+ <returns>
+ An <see cref="T:System.Web.Mvc.Html.MvcForm"/> instance.
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.FormExtensions.BeginForm(System.Web.Mvc.HtmlHelper,System.String,System.String,System.Object)">
+ <summary>
+ Writes an opening form tag to the response while returning a <see cref="T:System.Web.Mvc.Html.MvcForm"/>
+ instance. Can be used in a using block, in which case it renders the closing form tag at the end of the
+ using block.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="actionName">The name of the action.</param>
+ <param name="controllerName">The name of the controller.</param>
+ <param name="routeValues">An object containing the parameters for a route. The parameters are retrieved via reflection by examining the properties of the object. Typically created using object initializer syntax.</param>
+ <returns>
+ An <see cref="T:System.Web.Mvc.Html.MvcForm"/> instance.
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.FormExtensions.BeginForm(System.Web.Mvc.HtmlHelper,System.String,System.String,System.Web.Routing.RouteValueDictionary)">
+ <summary>
+ Writes an opening form tag to the response while returning a <see cref="T:System.Web.Mvc.Html.MvcForm"/>
+ instance. Can be used in a using block, in which case it renders the closing form tag at the end of the
+ using block.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="actionName">The name of the action.</param>
+ <param name="controllerName">The name of the controller.</param>
+ <param name="routeValues">An object containing the parameters for a route.</param>
+ <returns>
+ An <see cref="T:System.Web.Mvc.Html.MvcForm"/> instance.
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.FormExtensions.BeginForm(System.Web.Mvc.HtmlHelper,System.String,System.String,System.Web.Mvc.FormMethod)">
+ <summary>
+ Writes an opening form tag to the response while returning a <see cref="T:System.Web.Mvc.Html.MvcForm"/>
+ instance. Can be used in a using block, in which case it renders the closing form tag at the end of the
+ using block.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="actionName">The name of the action.</param>
+ <param name="controllerName">The name of the controller.</param>
+ <param name="method">The HTTP method for the form post, either Get or Post.</param>
+ <returns>
+ An <see cref="T:System.Web.Mvc.Html.MvcForm"/> instance.
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.FormExtensions.BeginForm(System.Web.Mvc.HtmlHelper,System.String,System.String,System.Object,System.Web.Mvc.FormMethod)">
+ <summary>
+ Writes an opening form tag to the response while returning a <see cref="T:System.Web.Mvc.Html.MvcForm"/>
+ instance. Can be used in a using block, in which case it renders the closing form tag at the end of the
+ using block.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="actionName">The name of the action.</param>
+ <param name="controllerName">The name of the controller.</param>
+ <param name="routeValues">An object containing the parameters for a route. The parameters are retrieved via reflection by examining the properties of the object. Typically created using object initializer syntax.</param>
+ <param name="method">The HTTP method for the form post, either Get or Post.</param>
+ <returns>
+ An <see cref="T:System.Web.Mvc.Html.MvcForm"/> instance.
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.FormExtensions.BeginForm(System.Web.Mvc.HtmlHelper,System.String,System.String,System.Web.Routing.RouteValueDictionary,System.Web.Mvc.FormMethod)">
+ <summary>
+ Writes an opening form tag to the response while returning a <see cref="T:System.Web.Mvc.Html.MvcForm"/>
+ instance. Can be used in a using block, in which case it renders the closing form tag at the end of the
+ using block.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="actionName">The name of the action.</param>
+ <param name="controllerName">The name of the controller.</param>
+ <param name="routeValues">An object containing the parameters for a route.</param>
+ <param name="method">The HTTP method for the form post, either Get or Post.</param>
+ <returns>
+ An <see cref="T:System.Web.Mvc.Html.MvcForm"/> instance.
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.FormExtensions.BeginForm(System.Web.Mvc.HtmlHelper,System.String,System.String,System.Web.Mvc.FormMethod,System.Object)">
+ <summary>
+ Writes an opening form tag to the response while returning a <see cref="T:System.Web.Mvc.Html.MvcForm"/>
+ instance. Can be used in a using block, in which case it renders the closing form tag at the end of the
+ using block.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="actionName">The name of the action.</param>
+ <param name="controllerName">The name of the controller.</param>
+ <param name="method">The HTTP method for the form post, either Get or Post.</param>
+ <param name="htmlAttributes">An object containing the HTML attributes for the element. The attributes are retrieved via reflection by examining the properties of the object. Typically created using object initializer syntax.</param>
+ <returns>
+ An <see cref="T:System.Web.Mvc.Html.MvcForm"/> instance.
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.FormExtensions.BeginForm(System.Web.Mvc.HtmlHelper,System.String,System.String,System.Web.Mvc.FormMethod,System.Collections.Generic.IDictionary{System.String,System.Object})">
+ <summary>
+ Writes an opening form tag to the response while returning a <see cref="T:System.Web.Mvc.Html.MvcForm"/>
+ instance. Can be used in a using block, in which case it renders the closing form tag at the end of the
+ using block.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="actionName">The name of the action.</param>
+ <param name="controllerName">The name of the controller.</param>
+ <param name="method">The HTTP method for the form post, either Get or Post.</param>
+ <param name="htmlAttributes">An object containing the HTML attributes for the element.</param>
+ <returns>
+ An <see cref="T:System.Web.Mvc.Html.MvcForm"/> instance.
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.FormExtensions.BeginForm(System.Web.Mvc.HtmlHelper,System.String,System.String,System.Object,System.Web.Mvc.FormMethod,System.Object)">
+ <summary>
+ Writes an opening form tag to the response while returning a <see cref="T:System.Web.Mvc.Html.MvcForm"/>
+ instance. Can be used in a using block, in which case it renders the closing form tag at the end of the
+ using block.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="actionName">The name of the action.</param>
+ <param name="controllerName">The name of the controller.</param>
+ <param name="routeValues">An object containing the parameters for a route. The parameters are retrieved via reflection by examining the properties of the object. Typically created using object initializer syntax.</param>
+ <param name="method">The HTTP method for the form post, either Get or Post.</param>
+ <param name="htmlAttributes">An object containing the HTML attributes for the element. The attributes are retrieved via reflection by examining the properties of the object. Typically created using object initializer syntax.</param>
+ <returns>
+ An <see cref="T:System.Web.Mvc.Html.MvcForm"/> instance.
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.FormExtensions.BeginForm(System.Web.Mvc.HtmlHelper,System.String,System.String,System.Web.Routing.RouteValueDictionary,System.Web.Mvc.FormMethod,System.Collections.Generic.IDictionary{System.String,System.Object})">
+ <summary>
+ Writes an opening form tag to the response while returning a <see cref="T:System.Web.Mvc.Html.MvcForm"/>
+ instance. Can be used in a using block, in which case it renders the closing form tag at the end of the
+ using block.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="actionName">The name of the action.</param>
+ <param name="controllerName">The name of the controller.</param>
+ <param name="routeValues">An object containing the parameters for a route.</param>
+ <param name="method">The HTTP method for the form post, either Get or Post.</param>
+ <param name="htmlAttributes">An object containing the HTML attributes for the element.</param>
+ <returns>
+ An <see cref="T:System.Web.Mvc.Html.MvcForm"/> instance.
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.FormExtensions.BeginRouteForm(System.Web.Mvc.HtmlHelper,System.Object)">
+ <summary>
+ Writes an opening form tag to the response while returning a <see cref="T:System.Web.Mvc.Html.MvcForm"/>
+ instance. Can be used in a using block, in which case it renders the closing form tag at the end of the
+ using block.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="routeValues">An object containing the parameters for a route. The parameters are retrieved via reflection by examining the properties of the object. Typically created using object initializer syntax.</param>
+ <returns>
+ An <see cref="T:System.Web.Mvc.Html.MvcForm"/> instance.
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.FormExtensions.BeginRouteForm(System.Web.Mvc.HtmlHelper,System.Web.Routing.RouteValueDictionary)">
+ <summary>
+ Writes an opening form tag to the response while returning a <see cref="T:System.Web.Mvc.Html.MvcForm"/>
+ instance. Can be used in a using block, in which case it renders the closing form tag at the end of the
+ using block.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="routeValues">An object containing the parameters for a route.</param>
+ <returns>
+ An <see cref="T:System.Web.Mvc.Html.MvcForm"/> instance.
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.FormExtensions.BeginRouteForm(System.Web.Mvc.HtmlHelper,System.String)">
+ <summary>
+ Writes an opening form tag to the response while returning a <see cref="T:System.Web.Mvc.Html.MvcForm"/>
+ instance. Can be used in a using block, in which case it renders the closing form tag at the end of the
+ using block.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="routeName">The name of the route to use to obtain the form post URL.</param>
+ <returns>
+ An <see cref="T:System.Web.Mvc.Html.MvcForm"/> instance.
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.FormExtensions.BeginRouteForm(System.Web.Mvc.HtmlHelper,System.String,System.Object)">
+ <summary>
+ Writes an opening form tag to the response while returning a <see cref="T:System.Web.Mvc.Html.MvcForm"/>
+ instance. Can be used in a using block, in which case it renders the closing form tag at the end of the
+ using block.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="routeName">The name of the route to use to obtain the form post URL.</param>
+ <param name="routeValues">An object containing the parameters for a route. The parameters are retrieved via reflection by examining the properties of the object. Typically created using object initializer syntax.</param>
+ <returns>
+ An <see cref="T:System.Web.Mvc.Html.MvcForm"/> instance.
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.FormExtensions.BeginRouteForm(System.Web.Mvc.HtmlHelper,System.String,System.Web.Routing.RouteValueDictionary)">
+ <summary>
+ Writes an opening form tag to the response while returning a <see cref="T:System.Web.Mvc.Html.MvcForm"/>
+ instance. Can be used in a using block, in which case it renders the closing form tag at the end of the
+ using block.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="routeName">The name of the route to use to obtain the form post URL.</param>
+ <param name="routeValues">An object containing the parameters for a route.</param>
+ <returns>
+ An <see cref="T:System.Web.Mvc.Html.MvcForm"/> instance.
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.FormExtensions.BeginRouteForm(System.Web.Mvc.HtmlHelper,System.String,System.Web.Mvc.FormMethod)">
+ <summary>
+ Writes an opening form tag to the response while returning a <see cref="T:System.Web.Mvc.Html.MvcForm"/>
+ instance. Can be used in a using block, in which case it renders the closing form tag at the end of the
+ using block.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="routeName">The name of the route to use to obtain the form post URL.</param>
+ <param name="method">The HTTP method for the form post, either Get or Post.</param>
+ <returns>
+ An <see cref="T:System.Web.Mvc.Html.MvcForm"/> instance.
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.FormExtensions.BeginRouteForm(System.Web.Mvc.HtmlHelper,System.String,System.Object,System.Web.Mvc.FormMethod)">
+ <summary>
+ Writes an opening form tag to the response while returning a <see cref="T:System.Web.Mvc.Html.MvcForm"/>
+ instance. Can be used in a using block, in which case it renders the closing form tag at the end of the
+ using block.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="routeName">The name of the route to use to obtain the form post URL.</param>
+ <param name="routeValues">An object containing the parameters for a route. The parameters are retrieved via reflection by examining the properties of the object. Typically created using object initializer syntax.</param>
+ <param name="method">The HTTP method for the form post, either Get or Post.</param>
+ <returns>
+ An <see cref="T:System.Web.Mvc.Html.MvcForm"/> instance.
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.FormExtensions.BeginRouteForm(System.Web.Mvc.HtmlHelper,System.String,System.Web.Routing.RouteValueDictionary,System.Web.Mvc.FormMethod)">
+ <summary>
+ Writes an opening form tag to the response while returning a <see cref="T:System.Web.Mvc.Html.MvcForm"/>
+ instance. Can be used in a using block, in which case it renders the closing form tag at the end of the
+ using block.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="routeName">The name of the route to use to obtain the form post URL.</param>
+ <param name="routeValues">An object containing the parameters for a route.</param>
+ <param name="method">The HTTP method for the form post, either Get or Post.</param>
+ <returns>
+ An <see cref="T:System.Web.Mvc.Html.MvcForm"/> instance.
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.FormExtensions.BeginRouteForm(System.Web.Mvc.HtmlHelper,System.String,System.Web.Mvc.FormMethod,System.Object)">
+ <summary>
+ Writes an opening form tag to the response while returning a <see cref="T:System.Web.Mvc.Html.MvcForm"/>
+ instance. Can be used in a using block, in which case it renders the closing form tag at the end of the
+ using block.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="routeName">The name of the route to use to obtain the form post URL.</param>
+ <param name="method">The HTTP method for the form post, either Get or Post.</param>
+ <param name="htmlAttributes">An object containing the HTML attributes for the element. The attributes are retrieved via reflection by examining the properties of the object. Typically created using object initializer syntax.</param>
+ <returns>
+ An <see cref="T:System.Web.Mvc.Html.MvcForm"/> instance.
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.FormExtensions.BeginRouteForm(System.Web.Mvc.HtmlHelper,System.String,System.Web.Mvc.FormMethod,System.Collections.Generic.IDictionary{System.String,System.Object})">
+ <summary>
+ Writes an opening form tag to the response while returning a <see cref="T:System.Web.Mvc.Html.MvcForm"/>
+ instance. Can be used in a using block, in which case it renders the closing form tag at the end of the
+ using block.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="routeName">The name of the route to use to obtain the form post URL.</param>
+ <param name="method">The HTTP method for the form post, either Get or Post.</param>
+ <param name="htmlAttributes">An object containing the HTML attributes for the element.</param>
+ <returns>
+ An <see cref="T:System.Web.Mvc.Html.MvcForm"/> instance.
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.FormExtensions.BeginRouteForm(System.Web.Mvc.HtmlHelper,System.String,System.Object,System.Web.Mvc.FormMethod,System.Object)">
+ <summary>
+ Writes an opening form tag to the response while returning a <see cref="T:System.Web.Mvc.Html.MvcForm"/>
+ instance. Can be used in a using block, in which case it renders the closing form tag at the end of the
+ using block.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="routeName">The name of the route to use to obtain the form post URL.</param>
+ <param name="routeValues">An object containing the parameters for a route. The parameters are retrieved via reflection by examining the properties of the object. Typically created using object initializer syntax.</param>
+ <param name="method">The HTTP method for the form post, either Get or Post.</param>
+ <param name="htmlAttributes">An object containing the HTML attributes for the element. The attributes are retrieved via reflection by examining the properties of the object. Typically created using object initializer syntax.</param>
+ <returns>
+ An <see cref="T:System.Web.Mvc.Html.MvcForm"/> instance.
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.FormExtensions.BeginRouteForm(System.Web.Mvc.HtmlHelper,System.String,System.Web.Routing.RouteValueDictionary,System.Web.Mvc.FormMethod,System.Collections.Generic.IDictionary{System.String,System.Object})">
+ <summary>
+ Writes an opening form tag to the response while returning a <see cref="T:System.Web.Mvc.Html.MvcForm"/>
+ instance. Can be used in a using block, in which case it renders the closing form tag at the end of the
+ using block.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="routeName">The name of the route to use to obtain the form post URL.</param>
+ <param name="routeValues">An object containing the parameters for a route.</param>
+ <param name="method">The HTTP method for the form post, either Get or Post.</param>
+ <param name="htmlAttributes">An object containing the HTML attributes for the element.</param>
+ <returns>
+ An <see cref="T:System.Web.Mvc.Html.MvcForm"/> instance.
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.FormExtensions.EndForm(System.Web.Mvc.HtmlHelper)">
+ <summary>
+ Renders the closing form tag to the response. This provides an alternative way to end the form
+ to using a using block with <see cref="M:System.Web.Mvc.Html.FormExtensions.BeginForm(System.Web.Mvc.HtmlHelper)"/> and <see cref="M:System.Web.Mvc.Html.FormExtensions.BeginRouteForm(System.Web.Mvc.HtmlHelper,System.String)"/>.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ </member>
+ <member name="T:System.Web.Mvc.HtmlHelper`1">
+ <summary>
+ Represents support for rendering HTML controls in a strongly typed view.
+ </summary>
+ <typeparam name="TModel">The type of the model.</typeparam>
+ </member>
+ <member name="T:System.Web.Mvc.HtmlHelper">
+ <summary>
+ Represents support for rendering HTML controls in a view.
+ </summary>
+ </member>
+ <member name="F:System.Web.Mvc.HtmlHelper.ValidationInputCssClassName">
+ <summary>
+ Name of a CSS input validation error.
+ </summary>
+ </member>
+ <member name="F:System.Web.Mvc.HtmlHelper.ValidationMessageCssClassName">
+ <summary>
+ Name of a CSS field validation error.
+ </summary>
+ </member>
+ <member name="F:System.Web.Mvc.HtmlHelper.ValidationSummaryCssClassName">
+ <summary>
+ Name of the CSS validation error summary.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.HtmlHelper.#ctor(System.Web.Mvc.ViewContext,System.Web.Mvc.IViewDataContainer)">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.HtmlHelper"/> class.
+ </summary>
+ <param name="viewContext">The view context.</param>
+ <param name="viewDataContainer">The view data container.</param>
+ </member>
+ <member name="M:System.Web.Mvc.HtmlHelper.#ctor(System.Web.Mvc.ViewContext,System.Web.Mvc.IViewDataContainer,System.Web.Routing.RouteCollection)">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.HtmlHelper"/> class.
+ </summary>
+ <param name="viewContext">The view context.</param>
+ <param name="viewDataContainer">The view data container.</param>
+ <param name="routeCollection">The route collection.</param>
+ </member>
+ <member name="M:System.Web.Mvc.HtmlHelper.AntiForgeryToken">
+ <summary>
+ Returns the anti-forgery token.
+ </summary>
+ <returns>The anti-forgery token.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.HtmlHelper.AntiForgeryToken(System.String)">
+ <summary>
+ Returns the anti-forgery token given the salt value.
+ </summary>
+ <param name="salt">The salt.</param>
+ <returns>The anti-forgery token.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.HtmlHelper.AntiForgeryToken(System.String,System.String,System.String)">
+ <summary>
+ Returns the anti-forgery token given the salt value.
+ </summary>
+ <param name="salt">The salt.</param>
+ <param name="domain">The cookie domain.</param>
+ <param name="path">The cookie path.</param>
+ <returns>The anti-forgery token.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.HtmlHelper.AttributeEncode(System.String)">
+ <summary>
+ Encodes the specified attribute string.
+ </summary>
+ <param name="value">The value.</param>
+ <returns>The encoded value.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.HtmlHelper.AttributeEncode(System.Object)">
+ <summary>
+ Encodes the specified attribute object.
+ </summary>
+ <param name="value">The value.</param>
+ <returns>The encoded string.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.HtmlHelper.Encode(System.String)">
+ <summary>
+ Encodes the specified value.
+ </summary>
+ <param name="value">The value.</param>
+ <returns>The encoded string.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.HtmlHelper.Encode(System.Object)">
+ <summary>
+ Encodes the specified value.
+ </summary>
+ <param name="value">The value.</param>
+ <returns>The encoded string.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.HtmlHelper.EvalString(System.String)">
+ <summary>
+ Evaluates the string.
+ </summary>
+ <param name="key">The key.</param>
+ <returns>The evaluated string.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.HtmlHelper.EvalBoolean(System.String)">
+ <summary>
+ Evaluates the boolean value.
+ </summary>
+ <param name="key">The key.</param>
+ <returns>The evaluated boolean value.</returns>
+ </member>
+ <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})">
+ <summary>
+ Generates the link.
+ </summary>
+ <param name="requestContext">The request context.</param>
+ <param name="routeCollection">The route collection.</param>
+ <param name="linkText">The link text.</param>
+ <param name="routeName">Name of the route.</param>
+ <param name="actionName">The name of the action.</param>
+ <param name="controllerName">Name of the controller.</param>
+ <param name="routeValues">The route values.</param>
+ <param name="htmlAttributes">The HTML attributes.</param>
+ <returns>The link.</returns>
+ </member>
+ <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})">
+ <summary>
+ Generates the link.
+ </summary>
+ <param name="requestContext">The request context.</param>
+ <param name="routeCollection">The route collection.</param>
+ <param name="linkText">The link text.</param>
+ <param name="routeName">Name of the route.</param>
+ <param name="actionName">The name of the action.</param>
+ <param name="controllerName">Name of the controller.</param>
+ <param name="protocol">The protocol.</param>
+ <param name="hostName">Name of the host.</param>
+ <param name="fragment">The fragment.</param>
+ <param name="routeValues">The route values.</param>
+ <param name="htmlAttributes">The HTML attributes.</param>
+ <returns>The link.</returns>
+ </member>
+ <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})">
+ <summary>
+ Returns an anchor tag containing the virtual path for the specified route values.
+ </summary>
+ <param name="requestContext">The request context.</param>
+ <param name="routeCollection">The collection of routes.</param>
+ <param name="linkText">The inner text of the anchor tag.</param>
+ <param name="routeName">The name of the route used to return a virtual path.</param>
+ <param name="routeValues">An object containing the parameters for a route. The parameters are retrieved via reflection by examining the properties of the object.</param>
+ <param name="htmlAttributes">An object containing the HTML attributes for the element. The attributes are retrieved via reflection by examining the properties of the object.</param>
+ <returns></returns>
+ </member>
+ <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})">
+ <summary>
+ Returns an anchor tag containing the URL for the specified route values.
+ </summary>
+ <param name="requestContext">The request context.</param>
+ <param name="routeCollection">The collection of routes.</param>
+ <param name="linkText">The inner text of the anchor tag.</param>
+ <param name="routeName">The name of the route used to return a virtual path.</param>
+ <param name="protocol">The protocol for the URL such as "http" or "https".</param>
+ <param name="hostName">The host name for the URL.</param>
+ <param name="fragment">The URL fragment name (also known as anchor name).</param>
+ <param name="routeValues">An object containing the parameters for a route. The parameters are retrieved via reflection by examining the properties of the object.</param>
+ <param name="htmlAttributes">An object containing the HTML attributes for the element. The attributes are retrieved via reflection by examining the properties of the object.</param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Web.Mvc.HtmlHelper.GetFormMethodString(System.Web.Mvc.FormMethod)">
+ <summary>
+ Gets the form method string.
+ </summary>
+ <param name="method">The method.</param>
+ <returns>The form method string.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.HtmlHelper.GetInputTypeString(System.Web.Mvc.InputType)">
+ <summary>
+ Gets the input type string.
+ </summary>
+ <param name="inputType">Type of the input.</param>
+ <returns>The input type string.</returns>
+ </member>
+ <member name="P:System.Web.Mvc.HtmlHelper.IdAttributeDotReplacement">
+ <summary>
+ Gets or sets the id attribute dot replacement.
+ </summary>
+ <value>The id attribute dot replacement.</value>
+ </member>
+ <member name="P:System.Web.Mvc.HtmlHelper.RouteCollection">
+ <summary>
+ Gets the route collection.
+ </summary>
+ <value>The route collection.</value>
+ </member>
+ <member name="P:System.Web.Mvc.HtmlHelper.ViewContext">
+ <summary>
+ Gets the view context.
+ </summary>
+ <value>The view context.</value>
+ </member>
+ <member name="P:System.Web.Mvc.HtmlHelper.ViewData">
+ <summary>
+ Gets the view data.
+ </summary>
+ <value>The view data.</value>
+ </member>
+ <member name="P:System.Web.Mvc.HtmlHelper.ViewDataContainer">
+ <summary>
+ Gets the view data container.
+ </summary>
+ <value>The view data container.</value>
+ </member>
+ <member name="M:System.Web.Mvc.HtmlHelper`1.#ctor(System.Web.Mvc.ViewContext,System.Web.Mvc.IViewDataContainer)">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.HtmlHelper`1"/> class.
+ </summary>
+ <param name="viewContext">The view context.</param>
+ <param name="viewDataContainer">The view data container.</param>
+ </member>
+ <member name="M:System.Web.Mvc.HtmlHelper`1.#ctor(System.Web.Mvc.ViewContext,System.Web.Mvc.IViewDataContainer,System.Web.Routing.RouteCollection)">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.HtmlHelper`1"/> class.
+ </summary>
+ <param name="viewContext">The view context.</param>
+ <param name="viewDataContainer">The view data container.</param>
+ <param name="routeCollection">The route collection.</param>
+ </member>
+ <member name="P:System.Web.Mvc.HtmlHelper`1.ViewData">
+ <summary>
+ Gets the view data.
+ </summary>
+ <value>The view data.</value>
+ </member>
+ <member name="T:System.Web.Mvc.ActionMethodSelector">
+ <summary>
+ Responsible for selecting an action method to be executed.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.ActionMethodSelector.#ctor(System.Type)">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.ActionMethodSelector"/> class.
+ </summary>
+ <param name="controllerType">Type of the controller.</param>
+ </member>
+ <member name="M:System.Web.Mvc.ActionMethodSelector.FindActionMethod(System.Web.Mvc.ControllerContext,System.String)">
+ <summary>
+ Finds the action method.
+ </summary>
+ <param name="controllerContext">The controller context.</param>
+ <param name="actionName">The name of the action.</param>
+ <returns>A reference to the action method information.</returns>
+ </member>
+ <member name="P:System.Web.Mvc.ActionMethodSelector.ControllerType">
+ <summary>
+ Gets the type of the controller.
+ </summary>
+ <value>The type of the controller.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ActionMethodSelector.AliasedMethods">
+ <summary>
+ Gets the aliased methods.
+ </summary>
+ <value>The aliased methods.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ActionMethodSelector.NonAliasedMethods">
+ <summary>
+ Gets the non aliased methods.
+ </summary>
+ <value>The non aliased methods.</value>
+ </member>
+ <member name="T:System.Web.Mvc.ViewEngines">
+ <summary>
+ Collection of view engines available to the application.
+ </summary>
+ </member>
+ <member name="P:System.Web.Mvc.ViewEngines.Engines">
+ <summary>
+ Gets the engines.
+ </summary>
+ <value>The engines.</value>
+ </member>
+ <member name="T:System.Web.Mvc.IControllerFactory">
+ <summary>
+ Defines the methods required for a controller factory.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.IControllerFactory.CreateController(System.Web.Routing.RequestContext,System.String)">
+ <summary>
+ Creates the controller.
+ </summary>
+ <param name="requestContext">The request context.</param>
+ <param name="controllerName">Name of the controller.</param>
+ <returns>The controller.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.IControllerFactory.ReleaseController(System.Web.Mvc.IController)">
+ <summary>
+ Releases the controller.
+ </summary>
+ <param name="controller">The controller.</param>
+ </member>
+ <member name="T:System.Web.Mvc.ViewDataDictionary`1">
+ <summary>
+ Container used for passing strongly typed data between a controller and a view.
+ </summary>
+ <typeparam name="TModel">The type of the model.</typeparam>
+ </member>
+ <member name="T:System.Web.Mvc.ViewDataDictionary">
+ <summary>
+ Container used for passing data between a controller and a view.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.ViewDataDictionary.#ctor">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.ViewDataDictionary"/> class.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.ViewDataDictionary.#ctor(System.Object)">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.ViewDataDictionary"/> class.
+ </summary>
+ <param name="model">The model.</param>
+ </member>
+ <member name="M:System.Web.Mvc.ViewDataDictionary.#ctor(System.Web.Mvc.ViewDataDictionary)">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.ViewDataDictionary"/> class.
+ </summary>
+ <param name="dictionary">The dictionary.</param>
+ </member>
+ <member name="M:System.Web.Mvc.ViewDataDictionary.Add(System.Collections.Generic.KeyValuePair{System.String,System.Object})">
+ <summary>
+ Adds an item to the <see cref="T:System.Collections.Generic.ICollection`1"/>.
+ </summary>
+ <param name="item">The object to add to the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param>
+ <exception cref="T:System.NotSupportedException">
+ The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only.
+ </exception>
+ </member>
+ <member name="M:System.Web.Mvc.ViewDataDictionary.Add(System.String,System.Object)">
+ <summary>
+ Adds an element with the provided key and value to the <see cref="T:System.Collections.Generic.IDictionary`2"/>.
+ </summary>
+ <param name="key">The object to use as the key of the element to add.</param>
+ <param name="value">The object to use as the value of the element to add.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="key"/> is null.
+ </exception>
+ <exception cref="T:System.ArgumentException">
+ An element with the same key already exists in the <see cref="T:System.Collections.Generic.IDictionary`2"/>.
+ </exception>
+ <exception cref="T:System.NotSupportedException">
+ The <see cref="T:System.Collections.Generic.IDictionary`2"/> is read-only.
+ </exception>
+ </member>
+ <member name="M:System.Web.Mvc.ViewDataDictionary.Clear">
+ <summary>
+ Removes all items from the <see cref="T:System.Collections.Generic.ICollection`1"/>.
+ </summary>
+ <exception cref="T:System.NotSupportedException">
+ The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only.
+ </exception>
+ </member>
+ <member name="M:System.Web.Mvc.ViewDataDictionary.Contains(System.Collections.Generic.KeyValuePair{System.String,System.Object})">
+ <summary>
+ Determines whether the <see cref="T:System.Collections.Generic.ICollection`1"/> contains a specific value.
+ </summary>
+ <param name="item">The object to locate in the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param>
+ <returns>
+ true if <paramref name="item"/> is found in the <see cref="T:System.Collections.Generic.ICollection`1"/>; otherwise, false.
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.ViewDataDictionary.ContainsKey(System.String)">
+ <summary>
+ Determines whether the <see cref="T:System.Collections.Generic.IDictionary`2"/> contains an element with the specified key.
+ </summary>
+ <param name="key">The key to locate in the <see cref="T:System.Collections.Generic.IDictionary`2"/>.</param>
+ <returns>
+ true if the <see cref="T:System.Collections.Generic.IDictionary`2"/> contains an element with the key; otherwise, false.
+ </returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="key"/> is null.
+ </exception>
+ </member>
+ <member name="M:System.Web.Mvc.ViewDataDictionary.CopyTo(System.Collections.Generic.KeyValuePair{System.String,System.Object}[],System.Int32)">
+ <summary>
+ Copies the elements of the <see cref="T:System.Collections.Generic.ICollection`1"/> to an <see cref="T:System.Array"/>, starting at a particular <see cref="T:System.Array"/> index.
+ </summary>
+ <param name="array">The one-dimensional <see cref="T:System.Array"/> that is the destination of the elements copied from <see cref="T:System.Collections.Generic.ICollection`1"/>. The <see cref="T:System.Array"/> must have zero-based indexing.</param>
+ <param name="arrayIndex">The zero-based index in <paramref name="array"/> at which copying begins.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="array"/> is null.
+ </exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="arrayIndex"/> is less than 0.
+ </exception>
+ <exception cref="T:System.ArgumentException">
+ <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"/> 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>
+ </member>
+ <member name="M:System.Web.Mvc.ViewDataDictionary.Eval(System.String)">
+ <summary>
+ Evaluates the specified expression.
+ </summary>
+ <param name="expression">The expression.</param>
+ <returns>The evaluation.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.ViewDataDictionary.Eval(System.String,System.String)">
+ <summary>
+ Evaluates the specified expression.
+ </summary>
+ <param name="expression">The expression.</param>
+ <param name="format">The format.</param>
+ <returns>The evaluation.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.ViewDataDictionary.GetEnumerator">
+ <summary>
+ Returns an enumerator that iterates through the collection.
+ </summary>
+ <returns>
+ A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection.
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.ViewDataDictionary.Remove(System.Collections.Generic.KeyValuePair{System.String,System.Object})">
+ <summary>
+ Removes the first occurrence of a specific object from the <see cref="T:System.Collections.Generic.ICollection`1"/>.
+ </summary>
+ <param name="item">The object to remove from the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param>
+ <returns>
+ true if <paramref name="item"/> was successfully removed from the <see cref="T:System.Collections.Generic.ICollection`1"/>; otherwise, false. This method also returns false if <paramref name="item"/> is not found in the original <see cref="T:System.Collections.Generic.ICollection`1"/>.
+ </returns>
+ <exception cref="T:System.NotSupportedException">
+ The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only.
+ </exception>
+ </member>
+ <member name="M:System.Web.Mvc.ViewDataDictionary.Remove(System.String)">
+ <summary>
+ Removes the element with the specified key from the <see cref="T:System.Collections.Generic.IDictionary`2"/>.
+ </summary>
+ <param name="key">The key of the element to remove.</param>
+ <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 <see cref="T:System.Collections.Generic.IDictionary`2"/>.
+ </returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="key"/> is null.
+ </exception>
+ <exception cref="T:System.NotSupportedException">
+ The <see cref="T:System.Collections.Generic.IDictionary`2"/> is read-only.
+ </exception>
+ </member>
+ <member name="M:System.Web.Mvc.ViewDataDictionary.SetModel(System.Object)">
+ <summary>
+ Sets the model.
+ </summary>
+ <param name="value">The value.</param>
+ <remarks>This method will execute before the derived type's instance constructor executes. Derived types must be aware of this and should plan accordingly. For example, the logic in SetModel() should be simple enough so as not to depend on the "this" pointer referencing a fully constructed object.</remarks>
+ </member>
+ <member name="M:System.Web.Mvc.ViewDataDictionary.TryGetValue(System.String,System.Object@)">
+ <summary>
+ Gets the value associated with the specified key.
+ </summary>
+ <param name="key">The key whose value to get.</param>
+ <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>
+ <returns>
+ true if the object that implements <see cref="T:System.Collections.Generic.IDictionary`2"/> contains an element with the specified key; otherwise, false.
+ </returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="key"/> is null.
+ </exception>
+ </member>
+ <member name="M:System.Web.Mvc.ViewDataDictionary.System#Collections#IEnumerable#GetEnumerator">
+ <summary>
+ Returns an enumerator that iterates through a collection.
+ </summary>
+ <returns>
+ An <see cref="T:System.Collections.IEnumerator"/> object that can be used to iterate through the collection.
+ </returns>
+ </member>
+ <member name="P:System.Web.Mvc.ViewDataDictionary.Count">
+ <summary>
+ Gets the number of elements contained in the <see cref="T:System.Collections.Generic.ICollection`1"/>.
+ </summary>
+ <value></value>
+ <returns>
+ The number of elements contained in the <see cref="T:System.Collections.Generic.ICollection`1"/>.
+ </returns>
+ </member>
+ <member name="P:System.Web.Mvc.ViewDataDictionary.IsReadOnly">
+ <summary>
+ Gets a value indicating whether the <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only.
+ </summary>
+ <value></value>
+ <returns>true if the <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only; otherwise, false.
+ </returns>
+ </member>
+ <member name="P:System.Web.Mvc.ViewDataDictionary.Keys">
+ <summary>
+ Gets an <see cref="T:System.Collections.Generic.ICollection`1"/> containing the keys of the <see cref="T:System.Collections.Generic.IDictionary`2"/>.
+ </summary>
+ <value></value>
+ <returns>
+ An <see cref="T:System.Collections.Generic.ICollection`1"/> containing the keys of the object that implements <see cref="T:System.Collections.Generic.IDictionary`2"/>.
+ </returns>
+ </member>
+ <member name="P:System.Web.Mvc.ViewDataDictionary.Model">
+ <summary>
+ Gets or sets the model.
+ </summary>
+ <value>The model.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ViewDataDictionary.ModelState">
+ <summary>
+ Gets the state of the model.
+ </summary>
+ <value>The state of the model.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ViewDataDictionary.Item(System.String)">
+ <summary>
+ Gets or sets the <see cref="T:System.Object"/> with the specified key.
+ </summary>
+ <value></value>
+ </member>
+ <member name="P:System.Web.Mvc.ViewDataDictionary.Values">
+ <summary>
+ Gets an <see cref="T:System.Collections.Generic.ICollection`1"/> containing the values in the <see cref="T:System.Collections.Generic.IDictionary`2"/>.
+ </summary>
+ <value></value>
+ <returns>
+ An <see cref="T:System.Collections.Generic.ICollection`1"/> containing the values in the object that implements <see cref="T:System.Collections.Generic.IDictionary`2"/>.
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.ViewDataDictionary`1.#ctor">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.ViewDataDictionary`1"/> class.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.ViewDataDictionary`1.#ctor(`0)">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.ViewDataDictionary`1"/> class.
+ </summary>
+ <param name="model">The model.</param>
+ </member>
+ <member name="M:System.Web.Mvc.ViewDataDictionary`1.#ctor(System.Web.Mvc.ViewDataDictionary)">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.ViewDataDictionary`1"/> class.
+ </summary>
+ <param name="viewDataDictionary">The view data dictionary.</param>
+ </member>
+ <member name="M:System.Web.Mvc.ViewDataDictionary`1.SetModel(System.Object)">
+ <summary>
+ Sets the model.
+ </summary>
+ <param name="value">The value.</param>
+ <remarks>This method will execute before the derived type's instance constructor executes. Derived types must be aware of this and should plan accordingly. For example, the logic in SetModel() should be simple enough so as not to depend on the "this" pointer referencing a fully constructed object.</remarks>
+ </member>
+ <member name="P:System.Web.Mvc.ViewDataDictionary`1.Model">
+ <summary>
+ Gets or sets the model.
+ </summary>
+ <value>The model.</value>
+ </member>
+ <member name="T:System.Web.Mvc.FilterInfo">
+ <summary>
+ Encapsulates information about the available action filters.
+ </summary>
+ </member>
+ <member name="P:System.Web.Mvc.FilterInfo.ActionFilters">
+ <summary>
+ Gets the action filters.
+ </summary>
+ <value>The action filters.</value>
+ </member>
+ <member name="P:System.Web.Mvc.FilterInfo.AuthorizationFilters">
+ <summary>
+ Gets the authorization filters.
+ </summary>
+ <value>The authorization filters.</value>
+ </member>
+ <member name="P:System.Web.Mvc.FilterInfo.ExceptionFilters">
+ <summary>
+ Gets the exception filters.
+ </summary>
+ <value>The exception filters.</value>
+ </member>
+ <member name="P:System.Web.Mvc.FilterInfo.ResultFilters">
+ <summary>
+ Gets the result filters.
+ </summary>
+ <value>The result filters.</value>
+ </member>
+ <member name="T:System.Web.Mvc.SelectListItem">
+ <summary>
+ Represents an item in a dropdown list.
+ </summary>
+ </member>
+ <member name="P:System.Web.Mvc.SelectListItem.Selected">
+ <summary>
+ Gets or sets a value indicating whether this <see cref="T:System.Web.Mvc.SelectListItem"/> is selected.
+ </summary>
+ <value><c>true</c> if selected; otherwise, <c>false</c>.</value>
+ </member>
+ <member name="P:System.Web.Mvc.SelectListItem.Text">
+ <summary>
+ Gets or sets the text.
+ </summary>
+ <value>The text.</value>
+ </member>
+ <member name="P:System.Web.Mvc.SelectListItem.Value">
+ <summary>
+ Gets or sets the value.
+ </summary>
+ <value>The value.</value>
+ </member>
+ <member name="T:System.Web.Mvc.ControllerDescriptor">
+ <summary>
+ Encapsulates information that describes a controller, such as its name, type, and actions.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.ControllerDescriptor.FindAction(System.Web.Mvc.ControllerContext,System.String)">
+ <summary>
+ Finds the action.
+ </summary>
+ <param name="controllerContext">The controller context.</param>
+ <param name="actionName">The name of the action.</param>
+ <returns>The information about the action.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.ControllerDescriptor.GetCanonicalActions">
+ <summary>
+ Gets the canonical actions.
+ </summary>
+ <returns>A list of action descriptors for the controller.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.ControllerDescriptor.GetCustomAttributes(System.Boolean)">
+ <summary>
+ Returns an array of all of the custom attributes defined on this member, excluding named attributes, or an empty array if there are no custom attributes.
+ </summary>
+ <param name="inherit">When true, look up the hierarchy chain for the inherited custom attribute.</param>
+ <returns>
+ An array of Objects representing custom attributes, or an empty array.
+ </returns>
+ <exception cref="T:System.TypeLoadException">
+ The custom attribute type cannot be loaded.
+ </exception>
+ <exception cref="T:System.Reflection.AmbiguousMatchException">
+ There is more than one attribute of type <paramref name="attributeType"/> defined on this member.
+ </exception>
+ </member>
+ <member name="M:System.Web.Mvc.ControllerDescriptor.GetCustomAttributes(System.Type,System.Boolean)">
+ <summary>
+ Returns an array of custom attributes defined on this member, identified by type, or an empty array if there are no custom attributes of that type.
+ </summary>
+ <param name="attributeType">The type of the custom attributes.</param>
+ <param name="inherit">When true, look up the hierarchy chain for the inherited custom attribute.</param>
+ <returns>
+ An array of Objects representing custom attributes, or an empty array.
+ </returns>
+ <exception cref="T:System.TypeLoadException">
+ The custom attribute type cannot be loaded.
+ </exception>
+ <exception cref="T:System.Reflection.AmbiguousMatchException">
+ There is more than one attribute of type <paramref name="attributeType"/> defined on this member.
+ </exception>
+ </member>
+ <member name="M:System.Web.Mvc.ControllerDescriptor.IsDefined(System.Type,System.Boolean)">
+ <summary>
+ Indicates whether one or more instance of <paramref name="attributeType"/> is defined on this member.
+ </summary>
+ <param name="attributeType">The type of the custom attributes.</param>
+ <param name="inherit">When true, look up the hierarchy chain for the inherited custom attribute.</param>
+ <returns>
+ <c>true</c> if the <paramref name="attributeType"/> is defined on this member; <c>false</c> otherwise.
+ </returns>
+ </member>
+ <member name="P:System.Web.Mvc.ControllerDescriptor.ControllerName">
+ <summary>
+ Gets the name of the controller.
+ </summary>
+ <value>The name of the controller.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ControllerDescriptor.ControllerType">
+ <summary>
+ Gets the type of the controller.
+ </summary>
+ <value>The type of the controller.</value>
+ </member>
+ <member name="T:System.Web.Mvc.ControllerBase">
+ <summary>
+ Represents the base class for all MVC controllers.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.ControllerBase.Execute(System.Web.Routing.RequestContext)">
+ <summary>
+ Executes the specified request context.
+ </summary>
+ <param name="requestContext">The request context.</param>
+ </member>
+ <member name="M:System.Web.Mvc.ControllerBase.ExecuteCore">
+ <summary>
+ Executes the core.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.ControllerBase.Initialize(System.Web.Routing.RequestContext)">
+ <summary>
+ Initializes the specified request context.
+ </summary>
+ <param name="requestContext">The request context.</param>
+ </member>
+ <member name="M:System.Web.Mvc.ControllerBase.System#Web#Mvc#IController#Execute(System.Web.Routing.RequestContext)">
+ <summary>
+ Executes the specified request context.
+ </summary>
+ <param name="requestContext">The request context.</param>
+ </member>
+ <member name="P:System.Web.Mvc.ControllerBase.ControllerContext">
+ <summary>
+ Gets or sets the controller context.
+ </summary>
+ <value>The controller context.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ControllerBase.TempData">
+ <summary>
+ Gets or sets the temporary data.
+ </summary>
+ <value>The temporary data.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ControllerBase.ValidateRequest">
+ <summary>
+ Gets or sets a value indicating whether the request is valid.
+ </summary>
+ <value><c>true</c> if the request is valid; otherwise, <c>false</c>.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ControllerBase.ValueProvider">
+ <summary>
+ Gets or sets the value provider.
+ </summary>
+ <value>The value provider.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ControllerBase.ViewData">
+ <summary>
+ Gets or sets the view data.
+ </summary>
+ <value>The view data.</value>
+ </member>
+ <member name="T:System.Web.Mvc.ActionMethodSelectorCache">
+ <summary>
+ Caches a sequence of action method selections.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.ActionMethodSelectorCache.GetSelector(System.Type)">
+ <summary>
+ Gets the selector.
+ </summary>
+ <param name="controllerType">Type of the controller.</param>
+ <returns>A reference to the action method selector.</returns>
+ </member>
+ <member name="T:System.Web.Mvc.ActionMethodSelectorAttribute">
+ <summary>
+ Attribute that affects the selection of an action method.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.ActionMethodSelectorAttribute.IsValidForRequest(System.Web.Mvc.ControllerContext,System.Reflection.MethodInfo)">
+ <summary>
+ Determines whether [is valid for request] [the specified controller context].
+ </summary>
+ <param name="controllerContext">The controller context.</param>
+ <param name="methodInfo">The method info.</param>
+ <returns>
+ <c>true</c> if [is valid for request] [the specified controller context]; otherwise, <c>false</c>.
+ </returns>
+ </member>
+ <member name="T:System.Web.Mvc.IResultFilter">
+ <summary>
+ Defines the methods required for a result filter.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.IResultFilter.OnResultExecuting(System.Web.Mvc.ResultExecutingContext)">
+ <summary>
+ Called before an action result executes.
+ </summary>
+ <param name="filterContext">The filter context.</param>
+ </member>
+ <member name="M:System.Web.Mvc.IResultFilter.OnResultExecuted(System.Web.Mvc.ResultExecutedContext)">
+ <summary>
+ Called after an action result executes.
+ </summary>
+ <param name="filterContext">The filter context.</param>
+ </member>
+ <member name="T:System.Web.Mvc.DefaultModelBinder">
+ <summary>
+ Provides a concreate implementation of a model binder.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.DefaultModelBinder.BindModel(System.Web.Mvc.ControllerContext,System.Web.Mvc.ModelBindingContext)">
+ <summary>
+ Binds the model.
+ </summary>
+ <param name="controllerContext">The controller context.</param>
+ <param name="bindingContext">The binding context.</param>
+ <returns>The bound object.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.DefaultModelBinder.BindProperty(System.Web.Mvc.ControllerContext,System.Web.Mvc.ModelBindingContext,System.ComponentModel.PropertyDescriptor)">
+ <summary>
+ Binds the property.
+ </summary>
+ <param name="controllerContext">The controller context.</param>
+ <param name="bindingContext">The binding context.</param>
+ <param name="propertyDescriptor">The property descriptor.</param>
+ </member>
+ <member name="M:System.Web.Mvc.DefaultModelBinder.CreateModel(System.Web.Mvc.ControllerContext,System.Web.Mvc.ModelBindingContext,System.Type)">
+ <summary>
+ Creates the model.
+ </summary>
+ <param name="controllerContext">The controller context.</param>
+ <param name="bindingContext">The binding context.</param>
+ <param name="modelType">Type of the model.</param>
+ <returns>The model.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.DefaultModelBinder.CreateSubIndexName(System.String,System.Int32)">
+ <summary>
+ Creates the name of the sub-index.
+ </summary>
+ <param name="prefix">The prefix.</param>
+ <param name="index">The index.</param>
+ <returns>The name of the sub-index.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.DefaultModelBinder.CreateSubPropertyName(System.String,System.String)">
+ <summary>
+ Creates the name of the sub-property.
+ </summary>
+ <param name="prefix">The prefix.</param>
+ <param name="propertyName">Name of the property.</param>
+ <returns>The name of the sub-property.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.DefaultModelBinder.GetModelProperties(System.Web.Mvc.ControllerContext,System.Web.Mvc.ModelBindingContext)">
+ <summary>
+ Gets the model properties.
+ </summary>
+ <param name="controllerContext">The controller context.</param>
+ <param name="bindingContext">The binding context.</param>
+ <returns>A collection of property descriptors.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.DefaultModelBinder.OnModelUpdated(System.Web.Mvc.ControllerContext,System.Web.Mvc.ModelBindingContext)">
+ <summary>
+ Called when the model is updated.
+ </summary>
+ <param name="controllerContext">The controller context.</param>
+ <param name="bindingContext">The binding context.</param>
+ </member>
+ <member name="M:System.Web.Mvc.DefaultModelBinder.OnModelUpdating(System.Web.Mvc.ControllerContext,System.Web.Mvc.ModelBindingContext)">
+ <summary>
+ Called when the model is updating.
+ </summary>
+ <param name="controllerContext">The controller context.</param>
+ <param name="bindingContext">The binding context.</param>
+ <returns><c>true</c> is the model is updating; otherwise, <c>false</c>.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.DefaultModelBinder.OnPropertyValidated(System.Web.Mvc.ControllerContext,System.Web.Mvc.ModelBindingContext,System.ComponentModel.PropertyDescriptor,System.Object)">
+ <summary>
+ Called when [property validated].
+ </summary>
+ <param name="controllerContext">The controller context.</param>
+ <param name="bindingContext">The binding context.</param>
+ <param name="propertyDescriptor">The property descriptor.</param>
+ <param name="value">The value.</param>
+ </member>
+ <member name="M:System.Web.Mvc.DefaultModelBinder.OnPropertyValidating(System.Web.Mvc.ControllerContext,System.Web.Mvc.ModelBindingContext,System.ComponentModel.PropertyDescriptor,System.Object)">
+ <summary>
+ Called when the property is validating.
+ </summary>
+ <param name="controllerContext">The controller context.</param>
+ <param name="bindingContext">The binding context.</param>
+ <param name="propertyDescriptor">The property descriptor.</param>
+ <param name="value">The value.</param>
+ <returns><c>true</c> if the property is validating; otherwise, <c>false</c>.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.DefaultModelBinder.SetProperty(System.Web.Mvc.ControllerContext,System.Web.Mvc.ModelBindingContext,System.ComponentModel.PropertyDescriptor,System.Object)">
+ <summary>
+ Sets the property.
+ </summary>
+ <param name="controllerContext">The controller context.</param>
+ <param name="bindingContext">The binding context.</param>
+ <param name="propertyDescriptor">The property descriptor.</param>
+ <param name="value">The value.</param>
+ </member>
+ <member name="P:System.Web.Mvc.DefaultModelBinder.Binders">
+ <summary>
+ Gets or sets the model binders.
+ </summary>
+ <value>The model binders.</value>
+ </member>
+ <member name="P:System.Web.Mvc.DefaultModelBinder.ResourceClassKey">
+ <summary>
+ The name of the resource class used to localize validation messages.
+ </summary>
+ </member>
+ <member name="T:System.Web.Mvc.FileStreamResult">
+ <summary>
+ Sends binary content to the response via a <see cref="T:System.IO.Stream"/>.
+ </summary>
+ </member>
+ <member name="T:System.Web.Mvc.FileResult">
+ <summary>
+ Base class used to send binary content to the response.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.FileResult.#ctor(System.String)">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.FileResult"/> class.
+ </summary>
+ <param name="contentType">Type of the content.</param>
+ </member>
+ <member name="M:System.Web.Mvc.FileResult.ExecuteResult(System.Web.Mvc.ControllerContext)">
+ <summary>
+ Enables processing of the result of an action method by a custom type that inherits from <see cref="T:System.Web.Mvc.ActionResult"/>.
+ </summary>
+ <param name="context">The context within which the result is executed.</param>
+ </member>
+ <member name="M:System.Web.Mvc.FileResult.WriteFile(System.Web.HttpResponseBase)">
+ <summary>
+ Writes the file.
+ </summary>
+ <param name="response">The response.</param>
+ </member>
+ <member name="P:System.Web.Mvc.FileResult.ContentType">
+ <summary>
+ The content type to use for the response.
+ </summary>
+ <value>The type of the content.</value>
+ </member>
+ <member name="P:System.Web.Mvc.FileResult.FileDownloadName">
+ <summary>
+ If specified, sets the content-disposition header so that a file download dialog box appears in the browser with the specified file name.
+ </summary>
+ <value>The name of the file download.</value>
+ </member>
+ <member name="M:System.Web.Mvc.FileStreamResult.#ctor(System.IO.Stream,System.String)">
+ <summary>
+ Initializes a new instance of <see cref="T:System.Web.Mvc.FileStreamResult"/>
+ </summary>
+ <param name="fileStream">The stream to send to the response.</param>
+ <param name="contentType">The content type to use for the response.</param>
+ </member>
+ <member name="M:System.Web.Mvc.FileStreamResult.WriteFile(System.Web.HttpResponseBase)">
+ <summary>
+ Writes the file.
+ </summary>
+ <param name="response">The response.</param>
+ </member>
+ <member name="P:System.Web.Mvc.FileStreamResult.FileStream">
+ <summary>
+ Gets the stream that will be sent to the response.
+ </summary>
+ <value>The file stream.</value>
+ </member>
+ <member name="T:System.Web.Mvc.FileContentResult">
+ <summary>
+ Sends binary content to the response.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.FileContentResult.#ctor(System.Byte[],System.String)">
+ <summary>
+ Initializes a new instance of <see cref="T:System.Web.Mvc.FileContentResult"/> with the specified file contents and content type.
+ </summary>
+ <param name="fileContents">The byte array to send to the response.</param>
+ <param name="contentType">The content type to use for the response.</param>
+ </member>
+ <member name="M:System.Web.Mvc.FileContentResult.WriteFile(System.Web.HttpResponseBase)">
+ <summary>
+ Writes the file.
+ </summary>
+ <param name="response">The response.</param>
+ </member>
+ <member name="P:System.Web.Mvc.FileContentResult.FileContents">
+ <summary>
+ The binary content to send to the response.
+ </summary>
+ <value>The file contents.</value>
+ </member>
+ <member name="T:System.Web.Mvc.JsonResult">
+ <summary>
+ Class used to send JSON content to the response.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.JsonResult.ExecuteResult(System.Web.Mvc.ControllerContext)">
+ <summary>
+ Enables processing of the result of an action method by a custom type that inherits from <see cref="T:System.Web.Mvc.ActionResult"/>.
+ </summary>
+ <param name="context">The context within which the result is executed.</param>
+ </member>
+ <member name="P:System.Web.Mvc.JsonResult.ContentEncoding">
+ <summary>
+ Gets or sets the content encoding.
+ </summary>
+ <value>The content encoding.</value>
+ </member>
+ <member name="P:System.Web.Mvc.JsonResult.ContentType">
+ <summary>
+ Gets or sets the type of the content.
+ </summary>
+ <value>The type of the content.</value>
+ </member>
+ <member name="P:System.Web.Mvc.JsonResult.Data">
+ <summary>
+ Gets or sets the data.
+ </summary>
+ <value>The data.</value>
+ </member>
+ <member name="T:System.Web.Mvc.ActionFilterAttribute">
+ <summary>
+ Represents the base class for all action filter attributes.
+ </summary>
+ </member>
+ <member name="T:System.Web.Mvc.FilterAttribute">
+ <summary>
+ Base class for action filter attributes.
+ </summary>
+ </member>
+ <member name="P:System.Web.Mvc.FilterAttribute.Order">
+ <summary>
+ Gets or sets the order.
+ </summary>
+ <value>The order.</value>
+ </member>
+ <member name="T:System.Web.Mvc.IActionFilter">
+ <summary>
+ Defines methods used in an action filter.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.IActionFilter.OnActionExecuting(System.Web.Mvc.ActionExecutingContext)">
+ <summary>
+ Called before the action method executes].
+ </summary>
+ <param name="filterContext">The filter context.</param>
+ </member>
+ <member name="M:System.Web.Mvc.IActionFilter.OnActionExecuted(System.Web.Mvc.ActionExecutedContext)">
+ <summary>
+ Called after the action method executes.
+ </summary>
+ <param name="filterContext">The filter context.</param>
+ </member>
+ <member name="M:System.Web.Mvc.ActionFilterAttribute.OnActionExecuting(System.Web.Mvc.ActionExecutingContext)">
+ <summary>
+ Called before the action method executes.
+ </summary>
+ <param name="filterContext">The filter context.</param>
+ </member>
+ <member name="M:System.Web.Mvc.ActionFilterAttribute.OnActionExecuted(System.Web.Mvc.ActionExecutedContext)">
+ <summary>
+ Called after the action method executes.
+ </summary>
+ <param name="filterContext">The filter context.</param>
+ </member>
+ <member name="M:System.Web.Mvc.ActionFilterAttribute.OnResultExecuting(System.Web.Mvc.ResultExecutingContext)">
+ <summary>
+ Called before the action result executes.
+ </summary>
+ <param name="filterContext">The filter context.</param>
+ </member>
+ <member name="M:System.Web.Mvc.ActionFilterAttribute.OnResultExecuted(System.Web.Mvc.ResultExecutedContext)">
+ <summary>
+ Called after the action result executes.
+ </summary>
+ <param name="filterContext">The filter context.</param>
+ </member>
+ <member name="T:System.Web.Mvc.HandleErrorAttribute">
+ <summary>
+ Attribute use for handling an exception thrown by an action method.
+ </summary>
+ </member>
+ <member name="T:System.Web.Mvc.IExceptionFilter">
+ <summary>
+ Defines the methods required for an exception filter.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.IExceptionFilter.OnException(System.Web.Mvc.ExceptionContext)">
+ <summary>
+ Called when an exception occurs.
+ </summary>
+ <param name="filterContext">The filter context.</param>
+ </member>
+ <member name="M:System.Web.Mvc.HandleErrorAttribute.OnException(System.Web.Mvc.ExceptionContext)">
+ <summary>
+ Called when an exception occurs.
+ </summary>
+ <param name="filterContext">The filter context.</param>
+ </member>
+ <member name="P:System.Web.Mvc.HandleErrorAttribute.ExceptionType">
+ <summary>
+ Gets or sets the type of the exception.
+ </summary>
+ <value>The type of the exception.</value>
+ </member>
+ <member name="P:System.Web.Mvc.HandleErrorAttribute.Master">
+ <summary>
+ Gets or sets the master view.
+ </summary>
+ <value>The master view.</value>
+ </member>
+ <member name="P:System.Web.Mvc.HandleErrorAttribute.View">
+ <summary>
+ Gets or sets the page view.
+ </summary>
+ <value>The page view.</value>
+ </member>
+ <member name="T:System.Web.Mvc.ModelStateDictionary">
+ <summary>
+ Represents the state of an attempt to bind a posted form to an action method including validation information.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.ModelStateDictionary.#ctor">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.ModelStateDictionary"/> class.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.ModelStateDictionary.#ctor(System.Web.Mvc.ModelStateDictionary)">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.ModelStateDictionary"/> class with the values copied
+ from the the specified ModelStateDictionary.
+ </summary>
+ <param name="dictionary">The dictionary.</param>
+ </member>
+ <member name="M:System.Web.Mvc.ModelStateDictionary.Add(System.Collections.Generic.KeyValuePair{System.String,System.Web.Mvc.ModelState})">
+ <summary>
+ Adds an item to the <see cref="T:System.Collections.Generic.ICollection`1"/>.
+ </summary>
+ <param name="item">The object to add to the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param>
+ <exception cref="T:System.NotSupportedException">
+ The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only.
+ </exception>
+ </member>
+ <member name="M:System.Web.Mvc.ModelStateDictionary.Add(System.String,System.Web.Mvc.ModelState)">
+ <summary>
+ Adds an element with the provided key and value to the <see cref="T:System.Collections.Generic.IDictionary`2"/>.
+ </summary>
+ <param name="key">The object to use as the key of the element to add.</param>
+ <param name="value">The object to use as the value of the element to add.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="key"/> is null.
+ </exception>
+ <exception cref="T:System.ArgumentException">
+ An element with the same key already exists in the <see cref="T:System.Collections.Generic.IDictionary`2"/>.
+ </exception>
+ <exception cref="T:System.NotSupportedException">
+ The <see cref="T:System.Collections.Generic.IDictionary`2"/> is read-only.
+ </exception>
+ </member>
+ <member name="M:System.Web.Mvc.ModelStateDictionary.AddModelError(System.String,System.Exception)">
+ <summary>
+ Adds the specified <see cref="T:System.Exception"/> to the errors collection for the <see cref="T:System.Web.Mvc.ModelState"/>
+ associated with the specified key.
+ </summary>
+ <param name="key">The key.</param>
+ <param name="exception">The exception.</param>
+ </member>
+ <member name="M:System.Web.Mvc.ModelStateDictionary.AddModelError(System.String,System.String)">
+ <summary>
+ Adds the specified error message to the errors collection for the <see cref="T:System.Web.Mvc.ModelState"/>
+ associated with the specified key.
+ </summary>
+ <param name="key">The key.</param>
+ <param name="errorMessage">The error message.</param>
+ </member>
+ <member name="M:System.Web.Mvc.ModelStateDictionary.Clear">
+ <summary>
+ Removes all items from the <see cref="T:System.Collections.Generic.ICollection`1"/>.
+ </summary>
+ <exception cref="T:System.NotSupportedException">
+ The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only.
+ </exception>
+ </member>
+ <member name="M:System.Web.Mvc.ModelStateDictionary.Contains(System.Collections.Generic.KeyValuePair{System.String,System.Web.Mvc.ModelState})">
+ <summary>
+ Determines whether the <see cref="T:System.Collections.Generic.ICollection`1"/> contains a specific value.
+ </summary>
+ <param name="item">The object to locate in the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param>
+ <returns>
+ true if <paramref name="item"/> is found in the <see cref="T:System.Collections.Generic.ICollection`1"/>; otherwise, false.
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.ModelStateDictionary.ContainsKey(System.String)">
+ <summary>
+ Determines whether this dictionary contains the specified key.
+ </summary>
+ <param name="key">The key to locate in the dictionary.</param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Web.Mvc.ModelStateDictionary.CopyTo(System.Collections.Generic.KeyValuePair{System.String,System.Web.Mvc.ModelState}[],System.Int32)">
+ <summary>
+ Copies the elements of the <see cref="T:System.Collections.Generic.ICollection`1"/> to an <see cref="T:System.Array"/>, starting at a particular <see cref="T:System.Array"/> index.
+ </summary>
+ <param name="array">The one-dimensional <see cref="T:System.Array"/> that is the destination of the elements copied from <see cref="T:System.Collections.Generic.ICollection`1"/>. The <see cref="T:System.Array"/> must have zero-based indexing.</param>
+ <param name="arrayIndex">The zero-based index in <paramref name="array"/> at which copying begins.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="array"/> is null.
+ </exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="arrayIndex"/> is less than 0.
+ </exception>
+ <exception cref="T:System.ArgumentException">
+ <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"/> 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>
+ </member>
+ <member name="M:System.Web.Mvc.ModelStateDictionary.GetEnumerator">
+ <summary>
+ Returns an enumerator that iterates through the collection.
+ </summary>
+ <returns>
+ A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection.
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.ModelStateDictionary.GetModelStateForKey(System.String)">
+ <summary>
+ Gets the model state for key.
+ </summary>
+ <param name="key">The key.</param>
+ <returns>The model state.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.ModelStateDictionary.IsValidField(System.String)">
+ <summary>
+ Returns true if there are any <see cref="T:System.Web.Mvc.ModelError"/> associated or prefixed with the specified key.
+ </summary>
+ <param name="key">The key.</param>
+ <returns>
+ <c>true</c> if [is valid field] [the specified key]; otherwise, <c>false</c>.
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.ModelStateDictionary.Merge(System.Web.Mvc.ModelStateDictionary)">
+ <summary>
+ Copies the values from the specified <see cref="T:System.Web.Mvc.ModelStateDictionary"/> into this
+ dictionary, overwriting existing values in cases where the keys are the same.
+ </summary>
+ <param name="dictionary">The dictionary.</param>
+ </member>
+ <member name="M:System.Web.Mvc.ModelStateDictionary.Remove(System.Collections.Generic.KeyValuePair{System.String,System.Web.Mvc.ModelState})">
+ <summary>
+ Removes the first occurrence of a specific object from the <see cref="T:System.Collections.Generic.ICollection`1"/>.
+ </summary>
+ <param name="item">The object to remove from the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param>
+ <returns>
+ true if <paramref name="item"/> was successfully removed from the <see cref="T:System.Collections.Generic.ICollection`1"/>; otherwise, false. This method also returns false if <paramref name="item"/> is not found in the original <see cref="T:System.Collections.Generic.ICollection`1"/>.
+ </returns>
+ <exception cref="T:System.NotSupportedException">
+ The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only.
+ </exception>
+ </member>
+ <member name="M:System.Web.Mvc.ModelStateDictionary.Remove(System.String)">
+ <summary>
+ Removes the element with the specified key from the <see cref="T:System.Collections.Generic.IDictionary`2"/>.
+ </summary>
+ <param name="key">The key of the element to remove.</param>
+ <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 <see cref="T:System.Collections.Generic.IDictionary`2"/>.
+ </returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="key"/> is null.
+ </exception>
+ <exception cref="T:System.NotSupportedException">
+ The <see cref="T:System.Collections.Generic.IDictionary`2"/> is read-only.
+ </exception>
+ </member>
+ <member name="M:System.Web.Mvc.ModelStateDictionary.SetModelValue(System.String,System.Web.Mvc.ValueProviderResult)">
+ <summary>
+ Sets the value for the specified key using the specified <see cref="T:System.Web.Mvc.ValueProviderResult"/>
+ </summary>
+ <param name="key">The key.</param>
+ <param name="value">The value.</param>
+ </member>
+ <member name="M:System.Web.Mvc.ModelStateDictionary.TryGetValue(System.String,System.Web.Mvc.ModelState@)">
+ <summary>
+ Gets the value associated with the specified key.
+ </summary>
+ <param name="key">The key whose value to get.</param>
+ <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>
+ <returns>
+ true if the object that implements <see cref="T:System.Collections.Generic.IDictionary`2"/> contains an element with the specified key; otherwise, false.
+ </returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="key"/> is null.
+ </exception>
+ </member>
+ <member name="M:System.Web.Mvc.ModelStateDictionary.System#Collections#IEnumerable#GetEnumerator">
+ <summary>
+ Returns an enumerator that iterates through a collection.
+ </summary>
+ <returns>
+ An <see cref="T:System.Collections.IEnumerator"/> object that can be used to iterate through the collection.
+ </returns>
+ </member>
+ <member name="P:System.Web.Mvc.ModelStateDictionary.Count">
+ <summary>
+ Gets the number of key/value pairs that are in the collection.
+ </summary>
+ <value></value>
+ <returns>
+ The number of elements contained in the <see cref="T:System.Collections.Generic.ICollection`1"/>.
+ </returns>
+ </member>
+ <member name="P:System.Web.Mvc.ModelStateDictionary.IsReadOnly">
+ <summary>
+ Gets a value indicating whether the <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only.
+ </summary>
+ <value></value>
+ <returns>true if the <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only; otherwise, false.
+ </returns>
+ </member>
+ <member name="P:System.Web.Mvc.ModelStateDictionary.IsValid">
+ <summary>
+ Returns true if there are no errors, otherwise false.
+ </summary>
+ <value><c>true</c> if this instance is valid; otherwise, <c>false</c>.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ModelStateDictionary.Keys">
+ <summary>
+ Gets a collection that contains the keys in the dictionary.
+ </summary>
+ <value></value>
+ <returns>
+ An <see cref="T:System.Collections.Generic.ICollection`1"/> containing the keys of the object that implements <see cref="T:System.Collections.Generic.IDictionary`2"/>.
+ </returns>
+ </member>
+ <member name="P:System.Web.Mvc.ModelStateDictionary.Item(System.String)">
+ <summary>
+ Gets or sets the value that is associated with the specified key.
+ </summary>
+ <value></value>
+ <returns>The model state.</returns>
+ </member>
+ <member name="P:System.Web.Mvc.ModelStateDictionary.Values">
+ <summary>
+ Gets a collection that contains the <see cref="T:System.Web.Mvc.ModelState"/> values in the dictionary.
+ </summary>
+ <value></value>
+ <returns>
+ An <see cref="T:System.Collections.Generic.ICollection`1"/> containing the values in the object that implements <see cref="T:System.Collections.Generic.IDictionary`2"/>.
+ </returns>
+ </member>
+ <member name="T:System.Web.Mvc.CustomModelBinderAttribute">
+ <summary>
+ Attribute that invokes a custom model binder.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.CustomModelBinderAttribute.GetBinder">
+ <summary>
+ Gets the model binder.
+ </summary>
+ <returns>A reference to the interface of the model binder.</returns>
+ </member>
+ <member name="T:System.Web.Mvc.ReflectedParameterDescriptor">
+ <summary>
+ Contains information that describes a reflected action method parameter.
+ </summary>
+ </member>
+ <member name="T:System.Web.Mvc.ParameterDescriptor">
+ <summary>
+ Contains information that describe a parameter.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.ParameterDescriptor.GetCustomAttributes(System.Boolean)">
+ <summary>
+ Returns an array of all of the custom attributes defined on this member, excluding named attributes, or an empty array if there are no custom attributes.
+ </summary>
+ <param name="inherit">When true, look up the hierarchy chain for the inherited custom attribute.</param>
+ <returns>
+ An array of Objects representing custom attributes, or an empty array.
+ </returns>
+ <exception cref="T:System.TypeLoadException">
+ The custom attribute type cannot be loaded.
+ </exception>
+ <exception cref="T:System.Reflection.AmbiguousMatchException">
+ There is more than one attribute of type <paramref name="attributeType"/> defined on this member.
+ </exception>
+ </member>
+ <member name="M:System.Web.Mvc.ParameterDescriptor.GetCustomAttributes(System.Type,System.Boolean)">
+ <summary>
+ Returns an array of custom attributes defined on this member, identified by type, or an empty array if there are no custom attributes of that type.
+ </summary>
+ <param name="attributeType">The type of the custom attributes.</param>
+ <param name="inherit">When true, look up the hierarchy chain for the inherited custom attribute.</param>
+ <returns>
+ An array of Objects representing custom attributes, or an empty array.
+ </returns>
+ <exception cref="T:System.TypeLoadException">
+ The custom attribute type cannot be loaded.
+ </exception>
+ <exception cref="T:System.Reflection.AmbiguousMatchException">
+ There is more than one attribute of type <paramref name="attributeType"/> defined on this member.
+ </exception>
+ </member>
+ <member name="M:System.Web.Mvc.ParameterDescriptor.IsDefined(System.Type,System.Boolean)">
+ <summary>
+ Indicates whether one or more instance of <paramref name="attributeType"/> is defined on this member.
+ </summary>
+ <param name="attributeType">The type of the custom attributes.</param>
+ <param name="inherit">When true, look up the hierarchy chain for the inherited custom attribute.</param>
+ <returns>
+ true if the <paramref name="attributeType"/> is defined on this member; false otherwise.
+ </returns>
+ </member>
+ <member name="P:System.Web.Mvc.ParameterDescriptor.ActionDescriptor">
+ <summary>
+ Gets the action descriptor.
+ </summary>
+ <value>The action descriptor.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ParameterDescriptor.BindingInfo">
+ <summary>
+ Gets the binding information.
+ </summary>
+ <value>The binding infomation.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ParameterDescriptor.ParameterName">
+ <summary>
+ Gets the name of the parameter.
+ </summary>
+ <value>The name of the parameter.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ParameterDescriptor.ParameterType">
+ <summary>
+ Gets the type of the parameter.
+ </summary>
+ <value>The type of the parameter.</value>
+ </member>
+ <member name="T:System.Web.Mvc.ParameterBindingInfo">
+ <summary>
+ Provides information used when binding to an action method argument or a model property.
+ </summary>
+ </member>
+ <member name="P:System.Web.Mvc.ParameterBindingInfo.Binder">
+ <summary>
+ Gets the model binder.
+ </summary>
+ <value>The model binder.</value>;
+ </member>
+ <member name="P:System.Web.Mvc.ParameterBindingInfo.Exclude">
+ <summary>
+ Gets the exclude.
+ </summary>
+ <value>The exclude.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ParameterBindingInfo.Include">
+ <summary>
+ Gets the include.
+ </summary>
+ <value>The include.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ParameterBindingInfo.Prefix">
+ <summary>
+ Gets the prefix.
+ </summary>
+ <value>The prefix.</value>
+ </member>
+ <member name="M:System.Web.Mvc.ReflectedParameterDescriptor.#ctor(System.Reflection.ParameterInfo,System.Web.Mvc.ActionDescriptor)">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.ReflectedParameterDescriptor"/> class.
+ </summary>
+ <param name="parameterInfo">The parameter info.</param>
+ <param name="actionDescriptor">The action descriptor.</param>
+ </member>
+ <member name="M:System.Web.Mvc.ReflectedParameterDescriptor.GetCustomAttributes(System.Boolean)">
+ <summary>
+ Returns an array of all of the custom attributes defined on this member, excluding named attributes, or an empty array if there are no custom attributes.
+ </summary>
+ <param name="inherit">When true, look up the hierarchy chain for the inherited custom attribute.</param>
+ <returns>
+ An array of Objects representing custom attributes, or an empty array.
+ </returns>
+ <exception cref="T:System.TypeLoadException">
+ The custom attribute type cannot be loaded.
+ </exception>
+ <exception cref="T:System.Reflection.AmbiguousMatchException">
+ There is more than one attribute of type <paramref name="attributeType"/> defined on this member.
+ </exception>
+ </member>
+ <member name="M:System.Web.Mvc.ReflectedParameterDescriptor.GetCustomAttributes(System.Type,System.Boolean)">
+ <summary>
+ Returns an array of custom attributes defined on this member, identified by type, or an empty array if there are no custom attributes of that type.
+ </summary>
+ <param name="attributeType">The type of the custom attributes.</param>
+ <param name="inherit">When true, look up the hierarchy chain for the inherited custom attribute.</param>
+ <returns>
+ An array of Objects representing custom attributes, or an empty array.
+ </returns>
+ <exception cref="T:System.TypeLoadException">
+ The custom attribute type cannot be loaded.
+ </exception>
+ <exception cref="T:System.Reflection.AmbiguousMatchException">
+ There is more than one attribute of type <paramref name="attributeType"/> defined on this member.
+ </exception>
+ </member>
+ <member name="M:System.Web.Mvc.ReflectedParameterDescriptor.IsDefined(System.Type,System.Boolean)">
+ <summary>
+ Indicates whether one or more instance of <paramref name="attributeType"/> is defined on this member.
+ </summary>
+ <param name="attributeType">The type of the custom attributes.</param>
+ <param name="inherit">When true, look up the hierarchy chain for the inherited custom attribute.</param>
+ <returns>
+ true if the <paramref name="attributeType"/> is defined on this member; false otherwise.
+ </returns>
+ </member>
+ <member name="P:System.Web.Mvc.ReflectedParameterDescriptor.ActionDescriptor">
+ <summary>
+ Gets the action descriptor.
+ </summary>
+ <value>The action descriptor.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ReflectedParameterDescriptor.BindingInfo">
+ <summary>
+ Gets the binding information.
+ </summary>
+ <value>The binding infomation.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ReflectedParameterDescriptor.ParameterInfo">
+ <summary>
+ Gets the parameter info.
+ </summary>
+ <value>The parameter info.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ReflectedParameterDescriptor.ParameterName">
+ <summary>
+ Gets the name of the parameter.
+ </summary>
+ <value>The name of the parameter.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ReflectedParameterDescriptor.ParameterType">
+ <summary>
+ Gets the type of the parameter.
+ </summary>
+ <value>The type of the parameter.</value>
+ </member>
+ <member name="T:System.Web.Mvc.AcceptVerbsAttribute">
+ <summary>
+ When applied to an action method, specifies which HTTP verbs the method will respond to.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.AcceptVerbsAttribute.#ctor(System.Web.Mvc.HttpVerbs)">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.AcceptVerbsAttribute"/> class.
+ </summary>
+ <param name="verbs">The verbs.</param>
+ </member>
+ <member name="M:System.Web.Mvc.AcceptVerbsAttribute.#ctor(System.String[])">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.AcceptVerbsAttribute"/> class.
+ </summary>
+ <param name="verbs">The verbs.</param>
+ </member>
+ <member name="M:System.Web.Mvc.AcceptVerbsAttribute.IsValidForRequest(System.Web.Mvc.ControllerContext,System.Reflection.MethodInfo)">
+ <summary>
+ Determines whether the given method information is valid for the specified controller context.
+ </summary>
+ <param name="controllerContext">The controller context.</param>
+ <param name="methodInfo">The method info.</param>
+ <returns>
+ <c>true</c> if the given method information is valid; otherwise, <c>false</c>.
+ </returns>
+ </member>
+ <member name="P:System.Web.Mvc.AcceptVerbsAttribute.Verbs">
+ <summary>
+ Gets the list of HTTP verbs the action method will respond to.
+ </summary>
+ </member>
+ <member name="T:System.Web.Mvc.ValidateAntiForgeryTokenAttribute">
+ <summary>
+ Attribute used to detect someone trying to tamper with a server request.
+ </summary>
+ <remarks>When an action method or controller is marked with this attribute, each round trip to the server is validated based on this token.</remarks>
+ </member>
+ <member name="T:System.Web.Mvc.IAuthorizationFilter">
+ <summary>
+ Defines the methods required for an authorization filter.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.IAuthorizationFilter.OnAuthorization(System.Web.Mvc.AuthorizationContext)">
+ <summary>
+ Called when authorization is required.
+ </summary>
+ <param name="filterContext">The filter context.</param>
+ </member>
+ <member name="M:System.Web.Mvc.ValidateAntiForgeryTokenAttribute.OnAuthorization(System.Web.Mvc.AuthorizationContext)">
+ <summary>
+ Called when authorization is required.
+ </summary>
+ <param name="filterContext">The filter context.</param>
+ </member>
+ <member name="P:System.Web.Mvc.ValidateAntiForgeryTokenAttribute.Salt">
+ <summary>
+ Gets or sets the salt.
+ </summary>
+ <value>The salt.</value>
+ </member>
+ <member name="T:System.Web.Mvc.WebFormViewEngine">
+ <summary>
+ Represents a view engine for rendering a Web Forms page in MVC.
+ </summary>
+ </member>
+ <member name="T:System.Web.Mvc.VirtualPathProviderViewEngine">
+ <summary>
+ Abstract base class implementation of the <see cref="T:System.Web.Mvc.IViewEngine"/> interface.
+ </summary>
+ <remarks>You can use this class as a starting point for building your own view engine that relies on the <see cref="T:System.Web.Hosting.VirtualPathProvider"/> class to access view files.</remarks>
+ </member>
+ <member name="M:System.Web.Mvc.VirtualPathProviderViewEngine.#ctor">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.VirtualPathProviderViewEngine"/> class.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.VirtualPathProviderViewEngine.CreateCacheKey(System.String,System.String,System.String)">
+ <summary>
+ Creates the cache key.
+ </summary>
+ <param name="prefix">The prefix.</param>
+ <param name="name">The name.</param>
+ <param name="controllerName">Name of the controller.</param>
+ <returns>The cache key.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.VirtualPathProviderViewEngine.CreatePartialView(System.Web.Mvc.ControllerContext,System.String)">
+ <summary>
+ Creates the partial view.
+ </summary>
+ <param name="controllerContext">The controller context.</param>
+ <param name="partialPath">The partial path.</param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Web.Mvc.VirtualPathProviderViewEngine.CreateView(System.Web.Mvc.ControllerContext,System.String,System.String)">
+ <summary>
+ Creates the view.
+ </summary>
+ <param name="controllerContext">The controller context.</param>
+ <param name="viewPath">The view path.</param>
+ <param name="masterPath">The master path.</param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Web.Mvc.VirtualPathProviderViewEngine.FileExists(System.Web.Mvc.ControllerContext,System.String)">
+ <summary>
+ Files the exists.
+ </summary>
+ <param name="controllerContext">The controller context.</param>
+ <param name="virtualPath">The virtual path.</param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Web.Mvc.VirtualPathProviderViewEngine.FindPartialView(System.Web.Mvc.ControllerContext,System.String,System.Boolean)">
+ <summary>
+ Finds the partial view.
+ </summary>
+ <param name="controllerContext">The controller context.</param>
+ <param name="partialViewName">Partial name of the view.</param>
+ <param name="useCache">if set to <c>true</c> [use cache].</param>
+ <returns>The partial view.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.VirtualPathProviderViewEngine.FindView(System.Web.Mvc.ControllerContext,System.String,System.String,System.Boolean)">
+ <summary>
+ Finds the view.
+ </summary>
+ <param name="controllerContext">The controller context.</param>
+ <param name="viewName">Name of the view.</param>
+ <param name="masterName">Name of the master.</param>
+ <param name="useCache">if set to <c>true</c> [use cache].</param>
+ <returns>The page view.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.VirtualPathProviderViewEngine.ReleaseView(System.Web.Mvc.ControllerContext,System.Web.Mvc.IView)">
+ <summary>
+ Releases the view.
+ </summary>
+ <param name="controllerContext">The controller context.</param>
+ <param name="view">The view.</param>
+ </member>
+ <member name="P:System.Web.Mvc.VirtualPathProviderViewEngine.MasterLocationFormats">
+ <summary>
+ Gets or sets the master location formats.
+ </summary>
+ <value>The master location formats.</value>
+ </member>
+ <member name="P:System.Web.Mvc.VirtualPathProviderViewEngine.PartialViewLocationFormats">
+ <summary>
+ Gets or sets the partial view location formats.
+ </summary>
+ <value>The partial view location formats.</value>
+ </member>
+ <member name="P:System.Web.Mvc.VirtualPathProviderViewEngine.ViewLocationCache">
+ <summary>
+ Gets or sets the view location cache.
+ </summary>
+ <value>The view location cache.</value>
+ </member>
+ <member name="P:System.Web.Mvc.VirtualPathProviderViewEngine.ViewLocationFormats">
+ <summary>
+ Gets or sets the view location formats.
+ </summary>
+ <value>The view location formats.</value>
+ </member>
+ <member name="P:System.Web.Mvc.VirtualPathProviderViewEngine.VirtualPathProvider">
+ <summary>
+ Gets or sets the virtual path provider.
+ </summary>
+ <value>The virtual path provider.</value>
+ </member>
+ <member name="M:System.Web.Mvc.WebFormViewEngine.#ctor">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.WebFormViewEngine"/> class.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.WebFormViewEngine.CreatePartialView(System.Web.Mvc.ControllerContext,System.String)">
+ <summary>
+ Creates the partial view.
+ </summary>
+ <param name="controllerContext">The controller context.</param>
+ <param name="partialPath">The partial path.</param>
+ <returns>The partial view.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.WebFormViewEngine.CreateView(System.Web.Mvc.ControllerContext,System.String,System.String)">
+ <summary>
+ Creates the view.
+ </summary>
+ <param name="controllerContext">The controller context.</param>
+ <param name="viewPath">The view path.</param>
+ <param name="masterPath">The master path.</param>
+ <returns>The view.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.WebFormViewEngine.FileExists(System.Web.Mvc.ControllerContext,System.String)">
+ <summary>
+ Determines if a file at the given location exists for the specified controller context.
+ </summary>
+ <param name="controllerContext">The controller context.</param>
+ <param name="virtualPath">The virtual path.</param>
+ <returns><c>true</c> if the file exists; otherwise, <c>false</c>.</returns>
+ </member>
+ <member name="T:System.Web.Mvc.WebFormView">
+ <summary>
+ Represents the information needed to build a Web Forms page in MVC.
+ </summary>
+ </member>
+ <member name="T:System.Web.Mvc.IView">
+ <summary>
+ Defines the methods required for a view.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.IView.Render(System.Web.Mvc.ViewContext,System.IO.TextWriter)">
+ <summary>
+ Renders the specified view context.
+ </summary>
+ <param name="viewContext">The view context.</param>
+ <param name="writer">The writer.</param>
+ </member>
+ <member name="M:System.Web.Mvc.WebFormView.#ctor(System.String)">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.WebFormView"/> class.
+ </summary>
+ <param name="viewPath">The view path.</param>
+ </member>
+ <member name="M:System.Web.Mvc.WebFormView.#ctor(System.String,System.String)">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.WebFormView"/> class.
+ </summary>
+ <param name="viewPath">The view path.</param>
+ <param name="masterPath">The master path.</param>
+ </member>
+ <member name="M:System.Web.Mvc.WebFormView.Render(System.Web.Mvc.ViewContext,System.IO.TextWriter)">
+ <summary>
+ Renders the specified view context.
+ </summary>
+ <param name="viewContext">The view context.</param>
+ <param name="writer">The writer.</param>
+ </member>
+ <member name="P:System.Web.Mvc.WebFormView.MasterPath">
+ <summary>
+ Gets the master path.
+ </summary>
+ <value>The master path.</value>
+ </member>
+ <member name="P:System.Web.Mvc.WebFormView.ViewPath">
+ <summary>
+ Gets the view path.
+ </summary>
+ <value>The view path.</value>
+ </member>
+ <member name="T:System.Web.Mvc.DefaultControllerFactory">
+ <summary>
+ Represents the controller factory that registered by default.
+ </summary>
+ <remarks>This class provides a convenient base class for those who simply want to tweak controller creation. This class call <c>Dispose</c> on any controller that implements the <c>IDisposable</c> interface.</remarks>
+ </member>
+ <member name="M:System.Web.Mvc.DefaultControllerFactory.CreateController(System.Web.Routing.RequestContext,System.String)">
+ <summary>
+ Creates the controller.
+ </summary>
+ <param name="requestContext">The request context.</param>
+ <param name="controllerName">Name of the controller.</param>
+ <returns>A reference to the controller.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.DefaultControllerFactory.GetControllerInstance(System.Type)">
+ <summary>
+ Gets the controller instance.
+ </summary>
+ <param name="controllerType">Type of the controller.</param>
+ <returns>A reference to the controller.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.DefaultControllerFactory.GetControllerType(System.String)">
+ <summary>
+ Gets the type of the controller.
+ </summary>
+ <param name="controllerName">Name of the controller.</param>
+ <returns>The type of the controller.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.DefaultControllerFactory.ReleaseController(System.Web.Mvc.IController)">
+ <summary>
+ Releases the controller.
+ </summary>
+ <param name="controller">The controller.</param>
+ </member>
+ <member name="P:System.Web.Mvc.DefaultControllerFactory.RequestContext">
+ <summary>
+ Gets or sets the request context.
+ </summary>
+ <value>The request context.</value>
+ </member>
+ <member name="T:System.Web.Mvc.PartialViewResult">
+ <summary>
+ Base class used to send a partial view to the response.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.PartialViewResult.FindView(System.Web.Mvc.ControllerContext)">
+ <summary>
+ When overridden, returns the <see cref="T:System.Web.Mvc.ViewEngineResult"/> used to render the view.
+ </summary>
+ <param name="context">The controller context.</param>
+ <returns>The view engine result.</returns>
+ </member>
+ <member name="T:System.Web.Mvc.MvcHttpHandler">
+ <summary>
+ Verifies and processes an HTTP request.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.MvcHttpHandler.VerifyAndProcessRequest(System.Web.IHttpHandler,System.Web.HttpContextBase)">
+ <summary>
+ Verifies and processes an HTTP request.
+ </summary>
+ <param name="httpHandler">The HTTP handler.</param>
+ <param name="httpContext">The HTTP context.</param>
+ </member>
+ <member name="T:System.Web.Mvc.ModelErrorCollection">
+ <summary>
+ A collection of <see cref="T:System.Web.Mvc.ModelError"/> instances representing
+ errors when model binding.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.ModelErrorCollection.Add(System.Exception)">
+ <summary>
+ Adds an <see cref="T:System.Exception"/> to the <see cref="T:System.Web.Mvc.ModelErrorCollection"/>
+ </summary>
+ <param name="exception">The exception.</param>
+ </member>
+ <member name="M:System.Web.Mvc.ModelErrorCollection.Add(System.String)">
+ <summary>
+ Adds an error message to the <see cref="T:System.Web.Mvc.ModelErrorCollection"/>
+ </summary>
+ <param name="errorMessage">The error message.</param>
+ </member>
+ <member name="T:System.Web.Mvc.HttpAntiForgeryException">
+ <summary>
+ Represents an HTTP anti-forgery exception.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.HttpAntiForgeryException.#ctor">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.HttpAntiForgeryException"/> class.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.HttpAntiForgeryException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.HttpAntiForgeryException"/> class.
+ </summary>
+ <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param>
+ <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext"/> that holds the contextual information about the source or destination.</param>
+ </member>
+ <member name="M:System.Web.Mvc.HttpAntiForgeryException.#ctor(System.String)">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.HttpAntiForgeryException"/> class.
+ </summary>
+ <param name="message">The message.</param>
+ </member>
+ <member name="M:System.Web.Mvc.HttpAntiForgeryException.#ctor(System.String,System.Exception)">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.HttpAntiForgeryException"/> class.
+ </summary>
+ <param name="message">The message.</param>
+ <param name="innerException">The inner exception.</param>
+ </member>
+ <member name="T:System.Web.Mvc.ViewResult">
+ <summary>
+ Class used to render a view using an <see cref="T:System.Web.Mvc.IView"/> returned by a <see cref="T:System.Web.Mvc.IViewEngine"/>.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.ViewResult.FindView(System.Web.Mvc.ControllerContext)">
+ <summary>
+ Searches the registered view engines and returns the <see cref="T:System.Web.Mvc.ViewEngineResult"/> used to render the view.
+ </summary>
+ <param name="context"></param>
+ <returns></returns>
+ </member>
+ <member name="P:System.Web.Mvc.ViewResult.MasterName">
+ <summary>
+ The name of the master view (such as a master page or template) to use when rendering the view.
+ </summary>
+ <value>The name of the master view.</value>
+ </member>
+ <member name="T:System.Web.Mvc.SessionStateTempDataProvider">
+ <summary>
+ Provides session state data to the current <see cref="T:System.Web.Mvc.TempDataDictionary"/> object.
+ </summary>
+ </member>
+ <member name="T:System.Web.Mvc.ITempDataProvider">
+ <summary>
+ Defines the contract for temp data providers which store data viewed on the next request.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.ITempDataProvider.LoadTempData(System.Web.Mvc.ControllerContext)">
+ <summary>
+ Loads the temporary data.
+ </summary>
+ <param name="controllerContext">The controller context.</param>
+ <returns>The temporary data.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.ITempDataProvider.SaveTempData(System.Web.Mvc.ControllerContext,System.Collections.Generic.IDictionary{System.String,System.Object})">
+ <summary>
+ Saves the temporary data.
+ </summary>
+ <param name="controllerContext">The controller context.</param>
+ <param name="values">The values.</param>
+ </member>
+ <member name="M:System.Web.Mvc.SessionStateTempDataProvider.LoadTempData(System.Web.Mvc.ControllerContext)">
+ <summary>
+ Loads the temporary data.
+ </summary>
+ <param name="controllerContext">The controller context.</param>
+ <returns>The temporary data.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.SessionStateTempDataProvider.SaveTempData(System.Web.Mvc.ControllerContext,System.Collections.Generic.IDictionary{System.String,System.Object})">
+ <summary>
+ Saves the temporary data.
+ </summary>
+ <param name="controllerContext">The controller context.</param>
+ <param name="values">The values.</param>
+ </member>
+ <member name="T:System.Web.Mvc.Html.MvcForm">
+ <summary>
+ Represents an HTML form.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.Html.MvcForm.#ctor(System.Web.HttpResponseBase)">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.Html.MvcForm"/> class.
+ </summary>
+ <param name="httpResponse">The HTTP response.</param>
+ </member>
+ <member name="M:System.Web.Mvc.Html.MvcForm.Dispose">
+ <summary>
+ Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.Html.MvcForm.Dispose(System.Boolean)">
+ <summary>
+ Releases unmanaged and - optionally - managed resources.
+ </summary>
+ <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
+ </member>
+ <member name="M:System.Web.Mvc.Html.MvcForm.EndForm">
+ <summary>
+ Ends the form.
+ </summary>
+ </member>
+ <member name="T:System.Web.Mvc.ReflectedControllerDescriptor">
+ <summary>
+ Contains information that describes a reflected controller.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.ReflectedControllerDescriptor.#ctor(System.Type)">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.ReflectedControllerDescriptor"/> class.
+ </summary>
+ <param name="controllerType">Type of the controller.</param>
+ </member>
+ <member name="M:System.Web.Mvc.ReflectedControllerDescriptor.FindAction(System.Web.Mvc.ControllerContext,System.String)">
+ <summary>
+ Finds the action.
+ </summary>
+ <param name="controllerContext">The controller context.</param>
+ <param name="actionName">The name of the action.</param>
+ <returns>The information about the action.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.ReflectedControllerDescriptor.GetAllActionMethodsFromSelector">
+ <summary>
+ Gets all action methods from selector.
+ </summary>
+ <returns>The action method information.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.ReflectedControllerDescriptor.GetCanonicalActions">
+ <summary>
+ Gets the canonical actions.
+ </summary>
+ <returns>
+ A list of action descriptors for the controller.
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.ReflectedControllerDescriptor.GetCustomAttributes(System.Boolean)">
+ <summary>
+ Returns an array of all of the custom attributes defined on this member, excluding named attributes, or an empty array if there are no custom attributes.
+ </summary>
+ <param name="inherit">When true, look up the hierarchy chain for the inherited custom attribute.</param>
+ <returns>
+ An array of Objects representing custom attributes, or an empty array.
+ </returns>
+ <exception cref="T:System.TypeLoadException">
+ The custom attribute type cannot be loaded.
+ </exception>
+ <exception cref="T:System.Reflection.AmbiguousMatchException">
+ There is more than one attribute of type <paramref name="attributeType"/> defined on this member.
+ </exception>
+ </member>
+ <member name="M:System.Web.Mvc.ReflectedControllerDescriptor.GetCustomAttributes(System.Type,System.Boolean)">
+ <summary>
+ Returns an array of custom attributes defined on this member, identified by type, or an empty array if there are no custom attributes of that type.
+ </summary>
+ <param name="attributeType">The type of the custom attributes.</param>
+ <param name="inherit">When true, look up the hierarchy chain for the inherited custom attribute.</param>
+ <returns>
+ An array of Objects representing custom attributes, or an empty array.
+ </returns>
+ <exception cref="T:System.TypeLoadException">
+ The custom attribute type cannot be loaded.
+ </exception>
+ <exception cref="T:System.Reflection.AmbiguousMatchException">
+ There is more than one attribute of type <paramref name="attributeType"/> defined on this member.
+ </exception>
+ </member>
+ <member name="M:System.Web.Mvc.ReflectedControllerDescriptor.IsDefined(System.Type,System.Boolean)">
+ <summary>
+ Indicates whether one or more instance of <paramref name="attributeType"/> is defined on this member.
+ </summary>
+ <param name="attributeType">The type of the custom attributes.</param>
+ <param name="inherit">When true, look up the hierarchy chain for the inherited custom attribute.</param>
+ <returns>
+ <c>true</c> if the <paramref name="attributeType"/> is defined on this member; <c>false</c> otherwise.
+ </returns>
+ </member>
+ <member name="P:System.Web.Mvc.ReflectedControllerDescriptor.ControllerType">
+ <summary>
+ Gets the type of the controller.
+ </summary>
+ <value>The type of the controller.</value>
+ </member>
+ <member name="T:System.Web.Mvc.ViewType">
+ <summary>
+ Represents the type of a view.
+ </summary>
+ </member>
+ <member name="P:System.Web.Mvc.ViewType.TypeName">
+ <summary>
+ Gets or sets the name of the type.
+ </summary>
+ <value>The name of the type.</value>
+ </member>
+ <member name="T:System.Web.Mvc.ActionExecutedContext">
+ <summary>
+ Provides the context for the ActionExecuted method of an <see cref="T:System.Web.Mvc.ActionFilterAttribute"/>.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.ActionExecutedContext.#ctor">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.ActionExecutedContext"/> class.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.ActionExecutedContext.#ctor(System.Web.Mvc.ControllerContext,System.Web.Mvc.ActionDescriptor,System.Boolean,System.Exception)">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.ActionExecutedContext"/> class.
+ </summary>
+ <param name="controllerContext">The controller context.</param>
+ <param name="actionDescriptor">The action descriptor.</param>
+ <param name="canceled">if set to <c>true</c> [canceled].</param>
+ <param name="exception">The exception.</param>
+ </member>
+ <member name="P:System.Web.Mvc.ActionExecutedContext.ActionDescriptor">
+ <summary>
+ Gets or sets the action descriptor.
+ </summary>
+ <value>The action descriptor.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ActionExecutedContext.Canceled">
+ <summary>
+ Gets or sets a value indicating whether this <see cref="T:System.Web.Mvc.ActionExecutedContext"/> is canceled.
+ </summary>
+ <value><c>true</c> if canceled; otherwise, <c>false</c>.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ActionExecutedContext.Exception">
+ <summary>
+ Gets or sets the exception.
+ </summary>
+ <value>The exception.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ActionExecutedContext.ExceptionHandled">
+ <summary>
+ Gets or sets a value indicating whether [exception handled].
+ </summary>
+ <value><c>true</c> if [exception handled]; otherwise, <c>false</c>.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ActionExecutedContext.Result">
+ <summary>
+ Gets or sets the result.
+ </summary>
+ <value>The result.</value>
+ </member>
+ <member name="T:System.Web.Mvc.EmptyResult">
+ <summary>
+ Represents a result that doesn't do anything, like a controller action returning null.
+ </summary>
+ <remarks>
+ <para>This follows a pattern known as the Null Object pattern.</para>
+ </remarks>
+ </member>
+ <member name="M:System.Web.Mvc.EmptyResult.ExecuteResult(System.Web.Mvc.ControllerContext)">
+ <summary>
+ Does nothing per the Null Object pattern.
+ </summary>
+ <param name="context"></param>
+ </member>
+ <member name="T:System.Web.Mvc.Controller">
+ <summary>
+
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.Controller.Content(System.String)">
+ <summary>
+ Returns a <see cref="T:System.Web.Mvc.ContentResult"/> that renders the supplied content to the response.
+ </summary>
+ <param name="content">The content to write to the response.</param>
+ <returns>The <see cref="T:System.Web.Mvc.ContentResult"/> that renders the supplied content to the response.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Controller.Content(System.String,System.String)">
+ <summary>
+ Returns a <see cref="T:System.Web.Mvc.ContentResult"/> that renders the supplied content to the response.
+ </summary>
+ <param name="content">The content to write to the response.</param>
+ <param name="contentType">The content type.</param>
+ <returns>The <see cref="T:System.Web.Mvc.ContentResult"/> that renders the supplied content to the response.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Controller.Content(System.String,System.String,System.Text.Encoding)">
+ <summary>
+ Returns a <see cref="T:System.Web.Mvc.ContentResult"/> which renders the supplied content to the response.
+ </summary>
+ <param name="content">The content to write to the response.</param>
+ <param name="contentType">The content type.</param>
+ <param name="contentEncoding">The content encoding.</param>
+ <returns>The a <see cref="T:System.Web.Mvc.ContentResult"/> which renders the supplied content to the response.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Controller.Dispose">
+ <summary>
+ Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.Controller.Dispose(System.Boolean)">
+ <summary>
+ Releases unmanaged and - optionally - managed resources.
+ </summary>
+ <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
+ </member>
+ <member name="M:System.Web.Mvc.Controller.ExecuteCore">
+ <summary>
+ Executes the core.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.Controller.File(System.Byte[],System.String)">
+ <summary>
+ Returns a <see cref="T:System.Web.Mvc.FileContentResult"/> which writes the fileContents to the response.
+ </summary>
+ <param name="fileContents">The binary content to send to the response.</param>
+ <param name="contentType">The content type.</param>
+ <returns>The <see cref="T:System.Web.Mvc.FileContentResult"/> which writes the fileContents to the response.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Controller.File(System.Byte[],System.String,System.String)">
+ <summary>
+ Returns a <see cref="T:System.Web.Mvc.FileContentResult"/> which writes the fileContents to the response.
+ </summary>
+ <param name="fileContents">The binary content to send to the response.</param>
+ <param name="contentType">The content type.</param>
+ <param name="fileDownloadName">If specified, sets the content-disposition header so that a file download dialog box appears in the browser with the specified file name.</param>
+ <returns>The <see cref="T:System.Web.Mvc.FileContentResult"/> which writes the fileContents to the response.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Controller.File(System.IO.Stream,System.String)">
+ <summary>
+ Returns a <see cref="T:System.Web.Mvc.FileStreamResult"/> which writes the fileStream to the response.
+ </summary>
+ <param name="fileStream">The stream to send to the response.</param>
+ <param name="contentType">The content type.</param>
+ <returns>The <see cref="T:System.Web.Mvc.FileStreamResult"/> which writes the fileStream to the response.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Controller.File(System.IO.Stream,System.String,System.String)">
+ <summary>
+ Returns a <see cref="T:System.Web.Mvc.FileStreamResult"/> which writes the fileStream to the response.
+ </summary>
+ <param name="fileStream">The stream to send to the response.</param>
+ <param name="contentType">The content type.</param>
+ <param name="fileDownloadName">If specified, sets the content-disposition header so that a file download dialog box appears in the browser with the specified file name.</param>
+ <returns>The <see cref="T:System.Web.Mvc.FileStreamResult"/> which writes the fileStream to the response.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Controller.File(System.String,System.String)">
+ <summary>
+ Returns a <see cref="T:System.Web.Mvc.FilePathResult"/> which writes the file to the response.
+ </summary>
+ <param name="fileName">The path to the file to send to the response.</param>
+ <param name="contentType">The content type.</param>
+ <returns>The <see cref="T:System.Web.Mvc.FilePathResult"/> which writes the file to the response.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Controller.File(System.String,System.String,System.String)">
+ <summary>
+ Returns a <see cref="T:System.Web.Mvc.FilePathResult"/> which writes the file to the response.
+ </summary>
+ <param name="fileName">The path to the file to send to the response.</param>
+ <param name="contentType">The content type.</param>
+ <param name="fileDownloadName">If specified, sets the content-disposition header so that a file download dialog box appears in the browser with the specified file name.</param>
+ <returns>The <see cref="T:System.Web.Mvc.FilePathResult"/> which writes the file to the response.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Controller.HandleUnknownAction(System.String)">
+ <summary>
+ Method called whenever a request matches this controller, but not an action of this controller.
+ </summary>
+ <param name="actionName">The name of the attempted action.</param>
+ </member>
+ <member name="M:System.Web.Mvc.Controller.JavaScript(System.String)">
+ <summary>
+ Returns a <see cref="T:System.Web.Mvc.JavaScriptResult"/> which writes a script to the response.
+ which is then executed on the client.
+ </summary>
+ <param name="script">The JavaScript code to run on the client.</param>
+ <returns>The <see cref="T:System.Web.Mvc.JavaScriptResult"/> which writes a script to the response.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Controller.Json(System.Object)">
+ <summary>
+ Returns a <see cref="T:System.Web.Mvc.JsonResult"/> which serializes the specified object to
+ JSON and writes the JSON to the response.
+ </summary>
+ <param name="data">The object which is serialized to JSON and sent to the response.</param>
+ <returns>The <see cref="T:System.Web.Mvc.JsonResult"/> which serializes the specified object to
+ JSON and writes the JSON to the response.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Controller.Json(System.Object,System.String)">
+ <summary>
+ Returns a <see cref="T:System.Web.Mvc.JsonResult"/> which serializes the specified object to
+ JSON and writes the JSON to the response.
+ </summary>
+ <param name="data">The object which is serialized to JSON and sent to the response.</param>
+ <param name="contentType">The content type.</param>
+ <returns>The <see cref="T:System.Web.Mvc.JsonResult"/> which serializes the specified object to
+ JSON and writes the JSON to the response.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Controller.Json(System.Object,System.String,System.Text.Encoding)">
+ <summary>
+ Returns a <see cref="T:System.Web.Mvc.JsonResult"/> which serializes the specified object to
+ JSON and writes the JSON to the response.
+ </summary>
+ <param name="data">The object which is serialized to JSON and sent to the response.</param>
+ <param name="contentType">The content type.</param>
+ <param name="contentEncoding">The content encoding.</param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Web.Mvc.Controller.Initialize(System.Web.Routing.RequestContext)">
+ <summary>
+ Initializes the controller.
+ </summary>
+ <param name="requestContext">The request context.</param>
+ </member>
+ <member name="M:System.Web.Mvc.Controller.OnActionExecuting(System.Web.Mvc.ActionExecutingContext)">
+ <summary>
+ Method called before the action method is invoked.
+ </summary>
+ <param name="filterContext">Contains information about the current request and action.</param>
+ </member>
+ <member name="M:System.Web.Mvc.Controller.OnActionExecuted(System.Web.Mvc.ActionExecutedContext)">
+ <summary>
+ Method called after the action method is invoked.
+ </summary>
+ <param name="filterContext">Contains information about the current request and action.</param>
+ </member>
+ <member name="M:System.Web.Mvc.Controller.OnAuthorization(System.Web.Mvc.AuthorizationContext)">
+ <summary>
+ Method called when authorization occurs.
+ </summary>
+ <param name="filterContext">Contains information about the current request and action.</param>
+ </member>
+ <member name="M:System.Web.Mvc.Controller.OnException(System.Web.Mvc.ExceptionContext)">
+ <summary>
+ Method called when an unhandled exception occurs in the action.
+ </summary>
+ <param name="filterContext">Contains information about the current request and action.</param>
+ </member>
+ <member name="M:System.Web.Mvc.Controller.OnResultExecuted(System.Web.Mvc.ResultExecutedContext)">
+ <summary>
+ Method called after the action result returned by an action method is executed.
+ </summary>
+ <param name="filterContext">Contains information about the current request and action result.</param>
+ </member>
+ <member name="M:System.Web.Mvc.Controller.OnResultExecuting(System.Web.Mvc.ResultExecutingContext)">
+ <summary>
+ Method called before the action result returned by an action method is executed.
+ </summary>
+ <param name="filterContext">Contains information about the current request and action result.</param>
+ </member>
+ <member name="M:System.Web.Mvc.Controller.PartialView">
+ <summary>
+ Returns a <see cref="T:System.Web.Mvc.PartialViewResult"/> that renders a partial view to the response.
+ </summary>
+ <returns></returns>
+ </member>
+ <member name="M:System.Web.Mvc.Controller.PartialView(System.Object)">
+ <summary>
+ Returns a <see cref="T:System.Web.Mvc.PartialViewResult"/> that renders a partial view to the response.
+ </summary>
+ <param name="model">The model rendered by the partial view.</param>
+ </member>
+ <member name="M:System.Web.Mvc.Controller.PartialView(System.String)">
+ <summary>
+ Returns a <see cref="T:System.Web.Mvc.PartialViewResult"/> that renders a partial view to the response.
+ </summary>
+ <param name="viewName">The name of the partial view.</param>
+ </member>
+ <member name="M:System.Web.Mvc.Controller.PartialView(System.String,System.Object)">
+ <summary>
+ Returns a <see cref="T:System.Web.Mvc.PartialViewResult"/> that renders a partial view to the response.
+ </summary>
+ <param name="viewName">The name of the partial view.</param>
+ <param name="model">The model rendered by the partial view.</param>
+ </member>
+ <member name="M:System.Web.Mvc.Controller.Redirect(System.String)">
+ <summary>
+ Returns a <see cref="T:System.Web.Mvc.RedirectResult"/> that redirects to the specified URL.
+ </summary>
+ <param name="url">The URL to redirect to.</param>
+ <returns>The <see cref="T:System.Web.Mvc.RedirectResult"/> that redirects to the specified URL.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Controller.RedirectToAction(System.String)">
+ <summary>
+ Returns a <see cref="T:System.Web.Mvc.RedirectToRouteResult"/> that redirects to the specified action.
+ </summary>
+ <param name="actionName">The name of the action.</param>
+ <returns>The <see cref="T:System.Web.Mvc.RedirectToRouteResult"/> that redirects to the specified action.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Controller.RedirectToAction(System.String,System.Object)">
+ <summary>
+ Returns a <see cref="T:System.Web.Mvc.RedirectToRouteResult"/> that redirects to the specified action.
+ </summary>
+ <param name="actionName">The name of the action.</param>
+ <param name="routeValues">An object containing the parameters for a route. The parameters are retrieved via reflection by examining the properties of the object. Typically created using object initializer syntax.</param>
+ <returns>The <see cref="T:System.Web.Mvc.RedirectToRouteResult"/> that redirects to the specified action.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Controller.RedirectToAction(System.String,System.Web.Routing.RouteValueDictionary)">
+ <summary>
+ Returns a <see cref="T:System.Web.Mvc.RedirectToRouteResult"/> that redirects to the specified action.
+ </summary>
+ <param name="actionName">The name of the action.</param>
+ <param name="routeValues">An object containing the parameters for a route.</param>
+ <returns>The <see cref="T:System.Web.Mvc.RedirectToRouteResult"/> that redirects to the specified action.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Controller.RedirectToAction(System.String,System.String)">
+ <summary>
+ Returns a <see cref="T:System.Web.Mvc.RedirectToRouteResult"/> that redirects to the specified action.
+ </summary>
+ <param name="actionName">The name of the action.</param>
+ <param name="controllerName">The name of the controller.</param>
+ <returns>The <see cref="T:System.Web.Mvc.RedirectToRouteResult"/> that redirects to the specified action.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Controller.RedirectToAction(System.String,System.String,System.Object)">
+ <summary>
+ Returns a <see cref="T:System.Web.Mvc.RedirectToRouteResult"/> that redirects to the specified action.
+ </summary>
+ <param name="actionName">The name of the action.</param>
+ <param name="controllerName">The name of the controller.</param>
+ <param name="routeValues">An object containing the parameters for a route. The parameters are retrieved via reflection by examining the properties of the object. Typically created using object initializer syntax.</param>
+ <returns>The <see cref="T:System.Web.Mvc.RedirectToRouteResult"/> that redirects to the specified action.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Controller.RedirectToAction(System.String,System.String,System.Web.Routing.RouteValueDictionary)">
+ <summary>
+ Returns a <see cref="T:System.Web.Mvc.RedirectToRouteResult"/> that redirects to the specified action.
+ </summary>
+ <param name="actionName">The name of the action.</param>
+ <param name="controllerName">The name of the controller.</param>
+ <param name="routeValues">An object containing the parameters for a route.</param>
+ <returns>The <see cref="T:System.Web.Mvc.RedirectToRouteResult"/> that redirects to the specified action.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Controller.RedirectToRoute(System.Object)">
+ <summary>
+ Returns a <see cref="T:System.Web.Mvc.RedirectToRouteResult"/> that redirects to the specified route.
+ </summary>
+ <param name="routeValues">An object containing the parameters for a route. The parameters are retrieved via reflection by examining the properties of the object. Typically created using object initializer syntax.</param>
+ <returns>The <see cref="T:System.Web.Mvc.RedirectToRouteResult"/> that redirects to the specified route.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Controller.RedirectToRoute(System.Web.Routing.RouteValueDictionary)">
+ <summary>
+ Returns a <see cref="T:System.Web.Mvc.RedirectToRouteResult"/> that redirects to the specified route.
+ </summary>
+ <param name="routeValues">An object containing the parameters for a route.</param>
+ <returns>The <see cref="T:System.Web.Mvc.RedirectToRouteResult"/> that redirects to the specified route.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Controller.RedirectToRoute(System.String)">
+ <summary>
+ Returns a <see cref="T:System.Web.Mvc.RedirectToRouteResult"/> that redirects to the specified route.
+ </summary>
+ <param name="routeName">The name of the route.</param>
+ <returns>The <see cref="T:System.Web.Mvc.RedirectToRouteResult"/> that redirects to the specified route.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Controller.RedirectToRoute(System.String,System.Object)">
+ <summary>
+ Returns a <see cref="T:System.Web.Mvc.RedirectToRouteResult"/> that redirects to the specified route.
+ </summary>
+ <param name="routeName">The name of the route.</param>
+ <param name="routeValues">An object containing the parameters for a route. The parameters are retrieved via reflection by examining the properties of the object. Typically created using object initializer syntax.</param>
+ <returns>The <see cref="T:System.Web.Mvc.RedirectToRouteResult"/> that redirects to the specified route.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Controller.RedirectToRoute(System.String,System.Web.Routing.RouteValueDictionary)">
+ <summary>
+ Returns a <see cref="T:System.Web.Mvc.RedirectToRouteResult"/> that redirects to the specified route.
+ </summary>
+ <param name="routeName">The name of the route.</param>
+ <param name="routeValues">An object containing the parameters for a route.</param>
+ <returns>The <see cref="T:System.Web.Mvc.RedirectToRouteResult"/> that redirects to the specified route.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Controller.TryUpdateModel``1(``0)">
+ <summary>
+ Updates the specified model instance using values from the Controller's current ValueProvider.
+ </summary>
+ <typeparam name="TModel">The type of the model object</typeparam>
+ <param name="model">The model instance to update.</param>
+ <returns><c>true</c> if successful; otherwise, <c>false</c>.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Controller.TryUpdateModel``1(``0,System.String)">
+ <summary>
+ Updates the specified model instance using values from the Controller's current ValueProvider.
+ </summary>
+ <typeparam name="TModel">The type of the model object</typeparam>
+ <param name="model">The model instance to update.</param>
+ <param name="prefix">Prefix to use when looking up values in the value provider.</param>
+ <returns><c>true</c> if successful; otherwise, <c>false</c>.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Controller.TryUpdateModel``1(``0,System.String[])">
+ <summary>
+ Updates the specified model instance using values from the Controller's current ValueProvider.
+ </summary>
+ <typeparam name="TModel">The type of the model object</typeparam>
+ <param name="model">The model instance to update.</param>
+ <param name="includeProperties">List of properties of the model to update.</param>
+ <returns><c>true</c> if successful; otherwise, <c>false</c>.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Controller.TryUpdateModel``1(``0,System.String,System.String[])">
+ <summary>
+ Updates the specified model instance using values from the Controller's current ValueProvider.
+ </summary>
+ <typeparam name="TModel">The type of the model object</typeparam>
+ <param name="model">The model instance to update.</param>
+ <param name="includeProperties">List of properties of the model to update.</param>
+ <param name="prefix">Prefix to use when looking up values in the value provider.</param>
+ <returns><c>true</c> if successful; otherwise, <c>false</c>.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Controller.TryUpdateModel``1(``0,System.String,System.String[],System.String[])">
+ <summary>
+ Updates the specified model instance using values from the Controller's current ValueProvider.
+ </summary>
+ <typeparam name="TModel">The type of the model object</typeparam>
+ <param name="model">The model instance to update.</param>
+ <param name="prefix">Prefix to use when looking up values in the value provider.</param>
+ <param name="includeProperties">List of properties of the model to update.</param>
+ <param name="excludeProperties">List of properties to explicitly exclude from update. These are excluded even if they are listed in the includeProperties list.</param>
+ <returns><c>true</c> if successful; otherwise, <c>false</c>.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Controller.TryUpdateModel``1(``0,System.Collections.Generic.IDictionary{System.String,System.Web.Mvc.ValueProviderResult})">
+ <summary>
+ Updates the specified model instance using values from the Controller's current ValueProvider.
+ </summary>
+ <typeparam name="TModel">The type of the model object</typeparam>
+ <param name="model">The model instance to update.</param>
+ <param name="valueProvider">A dictionary of values used to update the model.</param>
+ <returns><c>true</c> if successful; otherwise, <c>false</c>.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Controller.TryUpdateModel``1(``0,System.String,System.Collections.Generic.IDictionary{System.String,System.Web.Mvc.ValueProviderResult})">
+ <summary>
+ Updates the specified model instance using values from the Controller's current ValueProvider.
+ </summary>
+ <typeparam name="TModel">The type of the model object</typeparam>
+ <param name="model">The model instance to update.</param>
+ <param name="prefix">Prefix to use when looking up values in the value provider.</param>
+ <param name="valueProvider">A dictionary of values used to update the model.</param>
+ <returns><c>true</c> if successful; otherwise, <c>false</c>.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Controller.TryUpdateModel``1(``0,System.String[],System.Collections.Generic.IDictionary{System.String,System.Web.Mvc.ValueProviderResult})">
+ <summary>
+ Updates the specified model instance using values from the Controller's current ValueProvider.
+ </summary>
+ <typeparam name="TModel">The type of the model object</typeparam>
+ <param name="model">The model instance to update.</param>
+ <param name="includeProperties">List of properties of the model to update.</param>
+ <param name="valueProvider">A dictionary of values used to update the model.</param>
+ <returns><c>true</c> if successful; otherwise, <c>false</c>.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Controller.TryUpdateModel``1(``0,System.String,System.String[],System.Collections.Generic.IDictionary{System.String,System.Web.Mvc.ValueProviderResult})">
+ <summary>
+ Updates the specified model instance using values from the Controller's current ValueProvider.
+ </summary>
+ <typeparam name="TModel">The type of the model object</typeparam>
+ <param name="model">The model instance to update.</param>
+ <param name="prefix">Prefix to use when looking up values in the value provider.</param>
+ <param name="includeProperties">List of properties of the model to update.</param>
+ <param name="valueProvider">A dictionary of values used to update the model.</param>
+ <returns><c>true</c> if successful; otherwise, <c>false</c>.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Controller.TryUpdateModel``1(``0,System.String,System.String[],System.String[],System.Collections.Generic.IDictionary{System.String,System.Web.Mvc.ValueProviderResult})">
+ <summary>
+ Updates the specified model instance using values from the Controller's current ValueProvider.
+ </summary>
+ <typeparam name="TModel">The type of the model object</typeparam>
+ <param name="model">The model instance to update.</param>
+ <param name="prefix">Prefix to use when looking up values in the value provider.</param>
+ <param name="includeProperties">List of properties of the model to update.</param>
+ <param name="excludeProperties">List of properties to explicitly exclude from update. These are excluded even if they are listed in the includeProperties list.</param>
+ <param name="valueProvider">A dictionary of values used to update the model.</param>
+ <returns><c>true</c> if successful; otherwise, <c>false</c>.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Controller.UpdateModel``1(``0)">
+ <summary>
+ Updates the specified model instance using values from the Controller's current ValueProvider.
+ </summary>
+ <typeparam name="TModel">The type of the model object</typeparam>
+ <param name="model">The model instance to update.</param>
+ </member>
+ <member name="M:System.Web.Mvc.Controller.UpdateModel``1(``0,System.String)">
+ <summary>
+ Updates the specified model instance using values from the Controller's current ValueProvider.
+ </summary>
+ <typeparam name="TModel">The type of the model object</typeparam>
+ <param name="model">The model instance to update.</param>
+ <param name="prefix">Prefix to use when looking up values in the value provider.</param>
+ </member>
+ <member name="M:System.Web.Mvc.Controller.UpdateModel``1(``0,System.String[])">
+ <summary>
+ Updates the specified model instance using values from the Controller's current ValueProvider.
+ </summary>
+ <typeparam name="TModel">The type of the model object</typeparam>
+ <param name="model">The model instance to update.</param>
+ <param name="includeProperties">List of properties of the model to update.</param>
+ </member>
+ <member name="M:System.Web.Mvc.Controller.UpdateModel``1(``0,System.String,System.String[])">
+ <summary>
+ Updates the specified model instance using values from the Controller's current ValueProvider.
+ </summary>
+ <typeparam name="TModel">The type of the model object</typeparam>
+ <param name="model">The model instance to update.</param>
+ <param name="prefix">Prefix to use when looking up values in the value provider.</param>
+ <param name="includeProperties">List of properties of the model to update.</param>
+ </member>
+ <member name="M:System.Web.Mvc.Controller.UpdateModel``1(``0,System.String,System.String[],System.String[])">
+ <summary>
+ Updates the specified model instance using values from the Controller's current ValueProvider.
+ </summary>
+ <typeparam name="TModel">The type of the model object</typeparam>
+ <param name="model">The model instance to update.</param>
+ <param name="prefix">Prefix to use when looking up values in the value provider.</param>
+ <param name="includeProperties">List of properties of the model to update.</param>
+ <param name="excludeProperties">List of properties to explicitly exclude from update. These are excluded even if they are listed in the includeProperties list.</param>
+ </member>
+ <member name="M:System.Web.Mvc.Controller.UpdateModel``1(``0,System.Collections.Generic.IDictionary{System.String,System.Web.Mvc.ValueProviderResult})">
+ <summary>
+ Updates the specified model instance using values from the Controller's current ValueProvider.
+ </summary>
+ <typeparam name="TModel">The type of the model object</typeparam>
+ <param name="model">The model instance to update.</param>
+ <param name="valueProvider">A dictionary of values used to update the model.</param>
+ </member>
+ <member name="M:System.Web.Mvc.Controller.UpdateModel``1(``0,System.String,System.Collections.Generic.IDictionary{System.String,System.Web.Mvc.ValueProviderResult})">
+ <summary>
+ Updates the specified model instance using values from the Controller's current ValueProvider.
+ </summary>
+ <typeparam name="TModel">The type of the model object</typeparam>
+ <param name="model">The model instance to update.</param>
+ <param name="prefix">Prefix to use when looking up values in the value provider.</param>
+ <param name="valueProvider">A dictionary of values used to update the model.</param>
+ </member>
+ <member name="M:System.Web.Mvc.Controller.UpdateModel``1(``0,System.String[],System.Collections.Generic.IDictionary{System.String,System.Web.Mvc.ValueProviderResult})">
+ <summary>
+ Updates the specified model instance using values from the Controller's current ValueProvider.
+ </summary>
+ <typeparam name="TModel">The type of the model object</typeparam>
+ <param name="model">The model instance to update.</param>
+ <param name="includeProperties">List of properties of the model to update.</param>
+ <param name="valueProvider">A dictionary of values used to update the model.</param>
+ </member>
+ <member name="M:System.Web.Mvc.Controller.UpdateModel``1(``0,System.String,System.String[],System.Collections.Generic.IDictionary{System.String,System.Web.Mvc.ValueProviderResult})">
+ <summary>
+ Updates the specified model instance using values from the Controller's current ValueProvider.
+ </summary>
+ <typeparam name="TModel">The type of the model object</typeparam>
+ <param name="model">The model instance to update.</param>
+ <param name="prefix">Prefix to use when looking up values in the value provider.</param>
+ <param name="includeProperties">List of properties of the model to update.</param>
+ <param name="valueProvider">A dictionary of values used to update the model.</param>
+ </member>
+ <member name="M:System.Web.Mvc.Controller.UpdateModel``1(``0,System.String,System.String[],System.String[],System.Collections.Generic.IDictionary{System.String,System.Web.Mvc.ValueProviderResult})">
+ <summary>
+ Updates the specified model instance using values from the Controller's current ValueProvider.
+ </summary>
+ <typeparam name="TModel">The type of the model object</typeparam>
+ <param name="model">The model instance to update.</param>
+ <param name="prefix">Prefix to use when looking up values in the value provider.</param>
+ <param name="includeProperties">List of properties of the model to update.</param>
+ <param name="excludeProperties">List of properties to explicitly exclude from update. These are excluded even if they are listed in the includeProperties list.</param>
+ <param name="valueProvider">A dictionary of values used to update the model.</param>
+ </member>
+ <member name="M:System.Web.Mvc.Controller.View">
+ <summary>
+ Returns a <see cref="T:System.Web.Mvc.ViewResult"/> that renders a view to the response.
+ </summary>
+ <returns>The <see cref="T:System.Web.Mvc.ViewResult"/> that renders a view to the response.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Controller.View(System.Object)">
+ <summary>
+ Returns a <see cref="T:System.Web.Mvc.ViewResult"/> that renders a view to the response.
+ </summary>
+ <param name="model">The model rendered by the view.</param>
+ <returns>The <see cref="T:System.Web.Mvc.ViewResult"/> that renders a view to the response.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Controller.View(System.String)">
+ <summary>
+ Returns a <see cref="T:System.Web.Mvc.ViewResult"/> that renders a view to the response.
+ </summary>
+ <param name="viewName">The name of the partial view.</param>
+ <returns>The <see cref="T:System.Web.Mvc.ViewResult"/> that renders a view to the response.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Controller.View(System.String,System.String)">
+ <summary>
+ Returns a <see cref="T:System.Web.Mvc.ViewResult"/> that renders a view to the response.
+ </summary>
+ <param name="viewName">The name of the view.</param>
+ <param name="masterName">The name of the master view.</param>
+ <returns>The <see cref="T:System.Web.Mvc.ViewResult"/> that renders a view to the response.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Controller.View(System.String,System.Object)">
+ <summary>
+ Returns a <see cref="T:System.Web.Mvc.ViewResult"/> that renders a view to the response.
+ </summary>
+ <param name="viewName">The name of the view.</param>
+ <param name="model">The model rendered by the view.</param>
+ <returns>The <see cref="T:System.Web.Mvc.ViewResult"/> that renders a view to the response.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Controller.View(System.String,System.String,System.Object)">
+ <summary>
+ Returns a <see cref="T:System.Web.Mvc.ViewResult"/> that renders a view to the response.
+ </summary>
+ <param name="viewName">The name of the view.</param>
+ <param name="masterName">The name of the master view.</param>
+ <param name="model">The model rendered by the view.</param>
+ <returns>The <see cref="T:System.Web.Mvc.ViewResult"/> that renders a view to the response.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Controller.View(System.Web.Mvc.IView)">
+ <summary>
+ Returns a <see cref="T:System.Web.Mvc.ViewResult"/> that renders the specified <see cref="T:System.Web.Mvc.IView"/> to the response.
+ </summary>
+ <param name="view">The view rendered to the response.</param>
+ <returns>The <see cref="T:System.Web.Mvc.ViewResult"/> that renders the specified <see cref="T:System.Web.Mvc.IView"/> to the response.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Controller.View(System.Web.Mvc.IView,System.Object)">
+ <summary>
+ Returns a <see cref="T:System.Web.Mvc.ViewResult"/> which renders the specified <see cref="T:System.Web.Mvc.IView"/> to the response.
+ </summary>
+ <param name="view">The view rendered to the response.</param>
+ <param name="model">The model rendered by the view.</param>
+ <returns>The <see cref="T:System.Web.Mvc.ViewResult"/> which renders the specified <see cref="T:System.Web.Mvc.IView"/> to the response.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Controller.System#Web#Mvc#IActionFilter#OnActionExecuting(System.Web.Mvc.ActionExecutingContext)">
+ <summary>
+ Called before an action method executes.
+ </summary>
+ <param name="filterContext">The filter context.</param>
+ </member>
+ <member name="M:System.Web.Mvc.Controller.System#Web#Mvc#IActionFilter#OnActionExecuted(System.Web.Mvc.ActionExecutedContext)">
+ <summary>
+ Called before an action method executes.
+ </summary>
+ <param name="filterContext">The filter context.</param>
+ </member>
+ <member name="M:System.Web.Mvc.Controller.System#Web#Mvc#IAuthorizationFilter#OnAuthorization(System.Web.Mvc.AuthorizationContext)">
+ <summary>
+ Called when authorizing access to the action method.
+ </summary>
+ <param name="filterContext">The filter context.</param>
+ </member>
+ <member name="M:System.Web.Mvc.Controller.System#Web#Mvc#IExceptionFilter#OnException(System.Web.Mvc.ExceptionContext)">
+ <summary>
+ Called when an exception occurs in an action method.
+ </summary>
+ <param name="filterContext">The filter context.</param>
+ </member>
+ <member name="M:System.Web.Mvc.Controller.System#Web#Mvc#IResultFilter#OnResultExecuting(System.Web.Mvc.ResultExecutingContext)">
+ <summary>
+ Called before the action result executes.
+ </summary>
+ <param name="filterContext">The filter context.</param>
+ </member>
+ <member name="M:System.Web.Mvc.Controller.System#Web#Mvc#IResultFilter#OnResultExecuted(System.Web.Mvc.ResultExecutedContext)">
+ <summary>
+ Called after the action result executes.
+ </summary>
+ <param name="filterContext">The filter context.</param>
+ </member>
+ <member name="P:System.Web.Mvc.Controller.ActionInvoker">
+ <summary>
+ Gets the <see cref="T:System.Web.Mvc.IActionInvoker"/> for the controller.
+ </summary>
+ <value>The action invoker.</value>
+ </member>
+ <member name="P:System.Web.Mvc.Controller.Binders">
+ <summary>
+ Gets or sets the binders.
+ </summary>
+ <value>The binders.</value>
+ </member>
+ <member name="P:System.Web.Mvc.Controller.HttpContext">
+ <summary>
+ Encapsulates all HTTP-specific information about an individual HTTP request.
+ </summary>
+ <value>The HTTP context.</value>
+ </member>
+ <member name="P:System.Web.Mvc.Controller.ModelState">
+ <summary>
+ Gets the <see cref="T:System.Web.Mvc.ModelStateDictionary"/> object containing the
+ state of the model and model binding validation.
+ </summary>
+ <value>The state of the model.</value>
+ </member>
+ <member name="P:System.Web.Mvc.Controller.Request">
+ <summary>
+ Gets the <see cref="T:System.Web.HttpRequestBase"/> object for the current HTTP request.
+ </summary>
+ <value>The request.</value>
+ </member>
+ <member name="P:System.Web.Mvc.Controller.Response">
+ <summary>
+ Gets the <see cref="T:System.Web.HttpResponseBase"/> object for the current HTTP request.
+ </summary>
+ <value>The response.</value>
+ </member>
+ <member name="P:System.Web.Mvc.Controller.RouteData">
+ <summary>
+ Returns the <see cref="T:System.Web.Routing.RouteData"/> for the current request.
+ </summary>
+ <value>The route data.</value>
+ </member>
+ <member name="P:System.Web.Mvc.Controller.Server">
+ <summary>
+ Gets the <see cref="T:System.Web.HttpServerUtilityBase"/> object that provides methods used in processing Web requests.
+ </summary>
+ <value>The server.</value>
+ </member>
+ <member name="P:System.Web.Mvc.Controller.Session">
+ <summary>
+ Gets the <see cref="T:System.Web.HttpSessionStateBase"/> object for the current HTTP request.
+ </summary>
+ <value>The session.</value>
+ </member>
+ <member name="P:System.Web.Mvc.Controller.TempDataProvider">
+ <summary>
+ Gets the <see cref="T:System.Web.Mvc.ITempDataProvider"/> object used to store data for the next request.
+ </summary>
+ <value>The temp data provider.</value>
+ </member>
+ <member name="P:System.Web.Mvc.Controller.Url">
+ <summary>
+ Gets the <see cref="T:System.Web.Mvc.UrlHelper"/> object used to generate URLs using routing.
+ </summary>
+ <value>The URL.</value>
+ </member>
+ <member name="P:System.Web.Mvc.Controller.User">
+ <summary>
+ Gets the security information for the current HTTP request.
+ </summary>
+ <value>The user.</value>
+ </member>
+ <member name="T:System.Web.Mvc.OutputCacheAttribute">
+ <summary>
+ Attribute used for marking an action method whose output will be cached.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.OutputCacheAttribute.OnResultExecuting(System.Web.Mvc.ResultExecutingContext)">
+ <summary>
+ Called before the action result executes.
+ </summary>
+ <param name="filterContext">The filter context.</param>
+ </member>
+ <member name="P:System.Web.Mvc.OutputCacheAttribute.CacheProfile">
+ <summary>
+ Gets or sets the cache profile.
+ </summary>
+ <value>The cache profile.</value>
+ </member>
+ <member name="P:System.Web.Mvc.OutputCacheAttribute.Duration">
+ <summary>
+ Gets or sets the duration.
+ </summary>
+ <value>The duration.</value>
+ </member>
+ <member name="P:System.Web.Mvc.OutputCacheAttribute.Location">
+ <summary>
+ Gets or sets the location.
+ </summary>
+ <value>The location.</value>
+ </member>
+ <member name="P:System.Web.Mvc.OutputCacheAttribute.NoStore">
+ <summary>
+ Gets or sets a value indicating whether to store the cache.
+ </summary>
+ <value><c>true</c> if the cache should be stored; otherwise, <c>false</c>.</value>
+ </member>
+ <member name="P:System.Web.Mvc.OutputCacheAttribute.SqlDependency">
+ <summary>
+ Gets or sets the SQL dependency.
+ </summary>
+ <value>The SQL dependency.</value>
+ </member>
+ <member name="P:System.Web.Mvc.OutputCacheAttribute.VaryByContentEncoding">
+ <summary>
+ Gets or sets the vary by content encoding.
+ </summary>
+ <value>The vary by content encoding.</value>
+ </member>
+ <member name="P:System.Web.Mvc.OutputCacheAttribute.VaryByCustom">
+ <summary>
+ Gets or sets the vary by custom.
+ </summary>
+ <value>The vary by custom.</value>
+ </member>
+ <member name="P:System.Web.Mvc.OutputCacheAttribute.VaryByHeader">
+ <summary>
+ Gets or sets the vary by header.
+ </summary>
+ <value>The vary by header.</value>
+ </member>
+ <member name="P:System.Web.Mvc.OutputCacheAttribute.VaryByParam">
+ <summary>
+ Gets or sets the vary by param.
+ </summary>
+ <value>The vary by param.</value>
+ </member>
+ <member name="M:System.Web.Mvc.OutputCacheAttribute.OutputCachedPage.FrameworkInitialize">
+ <summary>
+ Initializes the control tree during page generation based on the declarative nature of the page.
+ </summary>
+ </member>
+ <member name="T:System.Web.Mvc.IViewLocationCache">
+ <summary>
+ Defines the methods required for a memory cache of view locations.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.IViewLocationCache.GetViewLocation(System.Web.HttpContextBase,System.String)">
+ <summary>
+ Gets the view location.
+ </summary>
+ <param name="httpContext">The HTTP context.</param>
+ <param name="key">The key.</param>
+ <returns>The view location.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.IViewLocationCache.InsertViewLocation(System.Web.HttpContextBase,System.String,System.String)">
+ <summary>
+ Inserts the view location.
+ </summary>
+ <param name="httpContext">The HTTP context.</param>
+ <param name="key">The key.</param>
+ <param name="virtualPath">The virtual path.</param>
+ </member>
+ <member name="T:System.Web.Mvc.Ajax.InsertionMode">
+ <summary>
+ Enumerates the AJAX script insertion modes.
+ </summary>
+ </member>
+ <member name="F:System.Web.Mvc.Ajax.InsertionMode.Replace">
+ <summary>
+ Replace the element.
+ </summary>
+ </member>
+ <member name="F:System.Web.Mvc.Ajax.InsertionMode.InsertBefore">
+ <summary>
+ Insert before the element.
+ </summary>
+ </member>
+ <member name="F:System.Web.Mvc.Ajax.InsertionMode.InsertAfter">
+ <summary>
+ Insert after the element.
+ </summary>
+ </member>
+ <member name="T:System.Web.Mvc.ModelBinderAttribute">
+ <summary>
+ Attribute used associate a model type to a model-builder type.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.ModelBinderAttribute.#ctor(System.Type)">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.ModelBinderAttribute"/> class.
+ </summary>
+ <param name="binderType">Type of the binder.</param>
+ </member>
+ <member name="M:System.Web.Mvc.ModelBinderAttribute.GetBinder">
+ <summary>
+ Gets the model binder.
+ </summary>
+ <returns>
+ A reference to the interface of the model binder.
+ </returns>
+ </member>
+ <member name="P:System.Web.Mvc.ModelBinderAttribute.BinderType">
+ <summary>
+ Gets the type of the binder.
+ </summary>
+ <value>The type of the binder.</value>
+ </member>
+ <member name="T:System.Web.Mvc.Ajax.AjaxExtensions">
+ <summary>
+ Represents support for ASP.NET AJAX within an ASP.NET MVC application.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.Ajax.AjaxExtensions.ActionLink(System.Web.Mvc.AjaxHelper,System.String,System.String,System.Web.Mvc.Ajax.AjaxOptions)">
+ <summary>
+ Returns an anchor tag containing the URL to the specified action, such that when the action link is clicked,
+ the action is invoked asynchronously via JavaScript.
+ </summary>
+ <param name="ajaxHelper">The ajax helper.</param>
+ <param name="linkText">The inner text of the anchor tag.</param>
+ <param name="actionName">The name of the action.</param>
+ <param name="ajaxOptions">An object providing options for the asynchronous request.</param>
+ <returns>An anchor tag.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Ajax.AjaxExtensions.ActionLink(System.Web.Mvc.AjaxHelper,System.String,System.String,System.Object,System.Web.Mvc.Ajax.AjaxOptions)">
+ <summary>
+ Returns an anchor tag containing the URL to the specified action, such that when the action link is clicked,
+ the action is invoked asynchronously via JavaScript.
+ </summary>
+ <param name="ajaxHelper">The ajax helper.</param>
+ <param name="linkText">The inner text of the anchor tag.</param>
+ <param name="actionName">The name of the action.</param>
+ <param name="routeValues">An object containing the parameters for a route. The parameters are retrieved via reflection by examining the properties of the object. Typically created using object initializer syntax.</param>
+ <param name="ajaxOptions">An object providing options for the asynchronous request.</param>
+ <returns>An anchor tag.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Ajax.AjaxExtensions.ActionLink(System.Web.Mvc.AjaxHelper,System.String,System.String,System.Object,System.Web.Mvc.Ajax.AjaxOptions,System.Object)">
+ <summary>
+ Returns an anchor tag containing the URL to the specified action, such that when the action link is clicked,
+ the action is invoked asynchronously via JavaScript.
+ </summary>
+ <param name="ajaxHelper">The ajax helper.</param>
+ <param name="linkText">The inner text of the anchor tag.</param>
+ <param name="actionName">The name of the action.</param>
+ <param name="routeValues">An object containing the parameters for a route. The parameters are retrieved via reflection by examining the properties of the object. Typically created using object initializer syntax.</param>
+ <param name="ajaxOptions">An object providing options for the asynchronous request.</param>
+ <param name="htmlAttributes">An object containing the HTML attributes for the element. The attributes are retrieved via reflection by examining the properties of the object. Typically created using object initializer syntax.</param>
+ <returns>An anchor tag.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Ajax.AjaxExtensions.ActionLink(System.Web.Mvc.AjaxHelper,System.String,System.String,System.Web.Routing.RouteValueDictionary,System.Web.Mvc.Ajax.AjaxOptions)">
+ <summary>
+ Returns an anchor tag containing the URL to the specified action, such that when the action link is clicked,
+ the action is invoked asynchronously via JavaScript.
+ </summary>
+ <param name="ajaxHelper">The ajax helper.</param>
+ <param name="linkText">The inner text of the anchor tag.</param>
+ <param name="actionName">The name of the action.</param>
+ <param name="routeValues">An object containing the parameters for a route.</param>
+ <param name="ajaxOptions">An object providing options for the asynchronous request.</param>
+ <returns>An anchor tag.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Ajax.AjaxExtensions.ActionLink(System.Web.Mvc.AjaxHelper,System.String,System.String,System.Web.Routing.RouteValueDictionary,System.Web.Mvc.Ajax.AjaxOptions,System.Collections.Generic.IDictionary{System.String,System.Object})">
+ <summary>
+ Returns an anchor tag containing the URL to the specified action, such that when the action link is clicked,
+ the action is invoked asynchronously via JavaScript.
+ </summary>
+ <param name="ajaxHelper">The ajax helper.</param>
+ <param name="linkText">The inner text of the anchor tag.</param>
+ <param name="actionName">The name of the action.</param>
+ <param name="routeValues">An object containing the parameters for a route.</param>
+ <param name="ajaxOptions">An object providing options for the asynchronous request.</param>
+ <param name="htmlAttributes">An object containing the HTML attributes for the element.</param>
+ <returns>An anchor tag.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Ajax.AjaxExtensions.ActionLink(System.Web.Mvc.AjaxHelper,System.String,System.String,System.String,System.Web.Mvc.Ajax.AjaxOptions)">
+ <summary>
+ Returns an anchor tag containing the URL to the specified action, such that when the action link is clicked,
+ the action is invoked asynchronously via JavaScript.
+ </summary>
+ <param name="ajaxHelper">The ajax helper.</param>
+ <param name="linkText">The inner text of the anchor tag.</param>
+ <param name="actionName">The name of the action.</param>
+ <param name="controllerName">The name of the controller.</param>
+ <param name="ajaxOptions">An object providing options for the asynchronous request.</param>
+ <returns>An anchor tag.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Ajax.AjaxExtensions.ActionLink(System.Web.Mvc.AjaxHelper,System.String,System.String,System.String,System.Object,System.Web.Mvc.Ajax.AjaxOptions)">
+ <summary>
+ Returns an anchor tag containing the URL to the specified action, such that when the action link is clicked,
+ the action is invoked asynchronously via JavaScript.
+ </summary>
+ <param name="ajaxHelper">The ajax helper.</param>
+ <param name="linkText">The inner text of the anchor tag.</param>
+ <param name="actionName">The name of the action.</param>
+ <param name="controllerName">The name of the controller.</param>
+ <param name="routeValues">An object containing the parameters for a route. The parameters are retrieved via reflection by examining the properties of the object. Typically created using object initializer syntax.</param>
+ <param name="ajaxOptions">An object providing options for the asynchronous request.</param>
+ <returns>An anchor tag.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Ajax.AjaxExtensions.ActionLink(System.Web.Mvc.AjaxHelper,System.String,System.String,System.String,System.Object,System.Web.Mvc.Ajax.AjaxOptions,System.Object)">
+ <summary>
+ Returns an anchor tag containing the URL to the specified action, such that when the action link is clicked,
+ the action is invoked asynchronously via JavaScript.
+ </summary>
+ <param name="ajaxHelper">The ajax helper.</param>
+ <param name="linkText">The inner text of the anchor tag.</param>
+ <param name="actionName">The name of the action.</param>
+ <param name="controllerName">The name of the controller.</param>
+ <param name="routeValues">An object containing the parameters for a route. The parameters are retrieved via reflection by examining the properties of the object. Typically created using object initializer syntax.</param>
+ <param name="ajaxOptions">An object providing options for the asynchronous request.</param>
+ <param name="htmlAttributes">An object containing the HTML attributes for the element. The attributes are retrieved via reflection by examining the properties of the object. Typically created using object initializer syntax.</param>
+ <returns>An anchor tag.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Ajax.AjaxExtensions.ActionLink(System.Web.Mvc.AjaxHelper,System.String,System.String,System.String,System.Web.Routing.RouteValueDictionary,System.Web.Mvc.Ajax.AjaxOptions)">
+ <summary>
+ Returns an anchor tag containing the URL to the specified action, such that when the action link is clicked,
+ the action is invoked asynchronously via JavaScript.
+ </summary>
+ <param name="ajaxHelper">The ajax helper.</param>
+ <param name="linkText">The inner text of the anchor tag.</param>
+ <param name="actionName">The name of the action.</param>
+ <param name="controllerName">The name of the controller.</param>
+ <param name="routeValues">An object containing the parameters for a route.</param>
+ <param name="ajaxOptions">An object providing options for the asynchronous request.</param>
+ <returns>An anchor tag.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Ajax.AjaxExtensions.ActionLink(System.Web.Mvc.AjaxHelper,System.String,System.String,System.String,System.Web.Routing.RouteValueDictionary,System.Web.Mvc.Ajax.AjaxOptions,System.Collections.Generic.IDictionary{System.String,System.Object})">
+ <summary>
+ Returns an anchor tag containing the URL to the specified action, such that when the action link is clicked,
+ the action is invoked asynchronously via JavaScript.
+ </summary>
+ <param name="ajaxHelper">The ajax helper.</param>
+ <param name="linkText">The inner text of the anchor tag.</param>
+ <param name="actionName">The name of the action.</param>
+ <param name="controllerName">The name of the controller.</param>
+ <param name="routeValues">An object containing the parameters for a route.</param>
+ <param name="ajaxOptions">An object providing options for the asynchronous request.</param>
+ <param name="htmlAttributes">An object containing the HTML attributes for the element.</param>
+ <returns>An anchor tag.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Ajax.AjaxExtensions.ActionLink(System.Web.Mvc.AjaxHelper,System.String,System.String,System.String,System.String,System.String,System.String,System.Object,System.Web.Mvc.Ajax.AjaxOptions,System.Object)">
+ <summary>
+ Returns an anchor tag containing the URL to the specified action, such that when the action link is clicked,
+ the action is invoked asynchronously via JavaScript.
+ </summary>
+ <param name="ajaxHelper">The ajax helper.</param>
+ <param name="linkText">The inner text of the anchor tag.</param>
+ <param name="actionName">The name of the action.</param>
+ <param name="controllerName">The name of the controller.</param>
+ <param name="protocol">The protocol for the URL such as "http" or "https".</param>
+ <param name="hostName">The host name for the URL.</param>
+ <param name="fragment">The URL fragment name (also known as anchor name).</param>
+ <param name="routeValues">An object containing the parameters for a route. The parameters are retrieved via reflection by examining the properties of the object. Typically created using object initializer syntax.</param>
+ <param name="ajaxOptions">An object providing options for the asynchronous request.</param>
+ <param name="htmlAttributes">An object containing the HTML attributes for the element. The attributes are retrieved via reflection by examining the properties of the object. Typically created using object initializer syntax.</param>
+ <returns>An anchor tag.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Ajax.AjaxExtensions.ActionLink(System.Web.Mvc.AjaxHelper,System.String,System.String,System.String,System.String,System.String,System.String,System.Web.Routing.RouteValueDictionary,System.Web.Mvc.Ajax.AjaxOptions,System.Collections.Generic.IDictionary{System.String,System.Object})">
+ <summary>
+ Returns an anchor tag containing the URL to the specified action, such that when the action link is clicked,
+ the action is invoked asynchronously via JavaScript.
+ </summary>
+ <param name="ajaxHelper">The ajax helper.</param>
+ <param name="linkText">The inner text of the anchor tag.</param>
+ <param name="actionName">The name of the action.</param>
+ <param name="controllerName">The name of the controller.</param>
+ <param name="protocol">The protocol for the URL such as "http" or "https".</param>
+ <param name="hostName">The host name for the URL.</param>
+ <param name="fragment">The URL fragment name (also known as anchor name).</param>
+ <param name="routeValues">An object containing the parameters for a route.</param>
+ <param name="ajaxOptions">An object providing options for the asynchronous request.</param>
+ <param name="htmlAttributes">An object containing the HTML attributes for the element.</param>
+ <returns>An anchor tag.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Ajax.AjaxExtensions.BeginForm(System.Web.Mvc.AjaxHelper,System.Web.Mvc.Ajax.AjaxOptions)">
+ <summary>
+ Writes an opening form tag to the response while returning an <see cref="T:System.Web.Mvc.Html.MvcForm"/>
+ instance. Can be used in a using block, in which case it renders the closing form tag at the end of the
+ using block. The form is submitted asynchronously using JavaScript.
+ </summary>
+ <param name="ajaxHelper">The ajax helper.</param>
+ <param name="ajaxOptions">An object providing options for the asynchronous request.</param>
+ <returns>
+ An <see cref="T:System.Web.Mvc.Html.MvcForm"/> instance.
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.Ajax.AjaxExtensions.BeginForm(System.Web.Mvc.AjaxHelper,System.String,System.Web.Mvc.Ajax.AjaxOptions)">
+ <summary>
+ Writes an opening form tag to the response while returning an <see cref="T:System.Web.Mvc.Html.MvcForm"/>
+ instance. Can be used in a using block, in which case it renders the closing form tag at the end of the
+ using block. The form is submitted asynchronously using JavaScript.
+ </summary>
+ <param name="ajaxHelper">The ajax helper.</param>
+ <param name="actionName">The name of the action.</param>
+ <param name="ajaxOptions">An object providing options for the asynchronous request.</param>
+ <returns>
+ An <see cref="T:System.Web.Mvc.Html.MvcForm"/> instance.
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.Ajax.AjaxExtensions.BeginForm(System.Web.Mvc.AjaxHelper,System.String,System.Object,System.Web.Mvc.Ajax.AjaxOptions)">
+ <summary>
+ Writes an opening form tag to the response while returning an <see cref="T:System.Web.Mvc.Html.MvcForm"/>
+ instance. Can be used in a using block, in which case it renders the closing form tag at the end of the
+ using block. The form is submitted asynchronously using JavaScript.
+ </summary>
+ <param name="ajaxHelper">The ajax helper.</param>
+ <param name="actionName">The name of the action.</param>
+ <param name="routeValues">An object containing the parameters for a route. The parameters are retrieved via reflection by examining the properties of the object. Typically created using object initializer syntax.</param>
+ <param name="ajaxOptions">An object providing options for the asynchronous request.</param>
+ <returns>
+ An <see cref="T:System.Web.Mvc.Html.MvcForm"/> instance.
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.Ajax.AjaxExtensions.BeginForm(System.Web.Mvc.AjaxHelper,System.String,System.Object,System.Web.Mvc.Ajax.AjaxOptions,System.Object)">
+ <summary>
+ Writes an opening form tag to the response while returning an <see cref="T:System.Web.Mvc.Html.MvcForm"/>
+ instance. Can be used in a using block, in which case it renders the closing form tag at the end of the
+ using block. The form is submitted asynchronously using JavaScript.
+ </summary>
+ <param name="ajaxHelper">The ajax helper.</param>
+ <param name="actionName">The name of the action.</param>
+ <param name="routeValues">An object containing the parameters for a route. The parameters are retrieved via reflection by examining the properties of the object. Typically created using object initializer syntax.</param>
+ <param name="ajaxOptions">An object providing options for the asynchronous request.</param>
+ <param name="htmlAttributes">An object containing the HTML attributes for the element. The parameters are retrieved via reflection by examining the properties of the object. Typically created using object initializer syntax.</param>
+ <returns>
+ An <see cref="T:System.Web.Mvc.Html.MvcForm"/> instance.
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.Ajax.AjaxExtensions.BeginForm(System.Web.Mvc.AjaxHelper,System.String,System.Web.Routing.RouteValueDictionary,System.Web.Mvc.Ajax.AjaxOptions)">
+ <summary>
+ Writes an opening form tag to the response while returning an <see cref="T:System.Web.Mvc.Html.MvcForm"/>
+ instance. Can be used in a using block, in which case it renders the closing form tag at the end of the
+ using block. The form is submitted asynchronously using JavaScript.
+ </summary>
+ <param name="ajaxHelper">The ajax helper.</param>
+ <param name="actionName">The name of the action.</param>
+ <param name="routeValues">An object containing the parameters for a route.</param>
+ <param name="ajaxOptions">An object providing options for the asynchronous request.</param>
+ <returns>
+ An <see cref="T:System.Web.Mvc.Html.MvcForm"/> instance.
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.Ajax.AjaxExtensions.BeginForm(System.Web.Mvc.AjaxHelper,System.String,System.Web.Routing.RouteValueDictionary,System.Web.Mvc.Ajax.AjaxOptions,System.Collections.Generic.IDictionary{System.String,System.Object})">
+ <summary>
+ Writes an opening form tag to the response while returning an <see cref="T:System.Web.Mvc.Html.MvcForm"/>
+ instance. Can be used in a using block, in which case it renders the closing form tag at the end of the
+ using block. The form is submitted asynchronously using JavaScript.
+ </summary>
+ <param name="ajaxHelper">The ajax helper.</param>
+ <param name="actionName">The name of the action.</param>
+ <param name="routeValues">An object containing the parameters for a route.</param>
+ <param name="ajaxOptions">An object providing options for the asynchronous request.</param>
+ <param name="htmlAttributes">An object containing the HTML attributes for the element.</param>
+ <returns>
+ An <see cref="T:System.Web.Mvc.Html.MvcForm"/> instance.
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.Ajax.AjaxExtensions.BeginForm(System.Web.Mvc.AjaxHelper,System.String,System.String,System.Web.Mvc.Ajax.AjaxOptions)">
+ <summary>
+ Writes an opening form tag to the response while returning an <see cref="T:System.Web.Mvc.Html.MvcForm"/>
+ instance. Can be used in a using block, in which case it renders the closing form tag at the end of the
+ using block. The form is submitted asynchronously using JavaScript.
+ </summary>
+ <param name="ajaxHelper">The ajax helper.</param>
+ <param name="actionName">The name of the action.</param>
+ <param name="controllerName">The name of the controller.</param>
+ <param name="ajaxOptions">An object providing options for the asynchronous request.</param>
+ <returns>
+ An <see cref="T:System.Web.Mvc.Html.MvcForm"/> instance.
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.Ajax.AjaxExtensions.BeginForm(System.Web.Mvc.AjaxHelper,System.String,System.String,System.Object,System.Web.Mvc.Ajax.AjaxOptions)">
+ <summary>
+ Writes an opening form tag to the response while returning an <see cref="T:System.Web.Mvc.Html.MvcForm"/>
+ instance. Can be used in a using block, in which case it renders the closing form tag at the end of the
+ using block. The form is submitted asynchronously using JavaScript.
+ </summary>
+ <param name="ajaxHelper">The ajax helper.</param>
+ <param name="actionName">The name of the action.</param>
+ <param name="controllerName">The name of the controller.</param>
+ <param name="routeValues">An object containing the parameters for a route. The parameters are retrieved via reflection by examining the properties of the object. Typically created using object initializer syntax.</param>
+ <param name="ajaxOptions">An object providing options for the asynchronous request.</param>
+ <returns>
+ An <see cref="T:System.Web.Mvc.Html.MvcForm"/> instance.
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.Ajax.AjaxExtensions.BeginForm(System.Web.Mvc.AjaxHelper,System.String,System.String,System.Object,System.Web.Mvc.Ajax.AjaxOptions,System.Object)">
+ <summary>
+ Writes an opening form tag to the response while returning an <see cref="T:System.Web.Mvc.Html.MvcForm"/>
+ instance. Can be used in a using block, in which case it renders the closing form tag at the end of the
+ using block. The form is submitted asynchronously using JavaScript.
+ </summary>
+ <param name="ajaxHelper">The ajax helper.</param>
+ <param name="actionName">The name of the action.</param>
+ <param name="controllerName">The name of the controller.</param>
+ <param name="routeValues">An object containing the parameters for a route. The parameters are retrieved via reflection by examining the properties of the object. Typically created using object initializer syntax.</param>
+ <param name="ajaxOptions">An object providing options for the asynchronous request.</param>
+ <param name="htmlAttributes">An object containing the HTML attributes for the element. The parameters are retrieved via reflection by examining the properties of the object. Typically created using object initializer syntax.</param>
+ <returns>
+ An <see cref="T:System.Web.Mvc.Html.MvcForm"/> instance.
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.Ajax.AjaxExtensions.BeginForm(System.Web.Mvc.AjaxHelper,System.String,System.String,System.Web.Routing.RouteValueDictionary,System.Web.Mvc.Ajax.AjaxOptions)">
+ <summary>
+ Writes an opening form tag to the response while returning an <see cref="T:System.Web.Mvc.Html.MvcForm"/>
+ instance. Can be used in a using block, in which case it renders the closing form tag at the end of the
+ using block. The form is submitted asynchronously using JavaScript.
+ </summary>
+ <param name="ajaxHelper">The ajax helper.</param>
+ <param name="actionName">The name of the action.</param>
+ <param name="controllerName">The name of the controller.</param>
+ <param name="routeValues">An object containing the parameters for a route.</param>
+ <param name="ajaxOptions">An object providing options for the asynchronous request.</param>
+ <returns>
+ An <see cref="T:System.Web.Mvc.Html.MvcForm"/> instance.
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.Ajax.AjaxExtensions.BeginForm(System.Web.Mvc.AjaxHelper,System.String,System.String,System.Web.Routing.RouteValueDictionary,System.Web.Mvc.Ajax.AjaxOptions,System.Collections.Generic.IDictionary{System.String,System.Object})">
+ <summary>
+ Writes an opening form tag to the response while returning an <see cref="T:System.Web.Mvc.Html.MvcForm"/>
+ instance. Can be used in a using block, in which case it renders the closing form tag at the end of the
+ using block. The form is submitted asynchronously using JavaScript.
+ </summary>
+ <param name="ajaxHelper">The ajax helper.</param>
+ <param name="actionName">The name of the action.</param>
+ <param name="controllerName">The name of the controller.</param>
+ <param name="routeValues">An object containing the parameters for a route.</param>
+ <param name="ajaxOptions">An object providing options for the asynchronous request.</param>
+ <param name="htmlAttributes">An object containing the HTML attributes for the element.</param>
+ <returns>
+ An <see cref="T:System.Web.Mvc.Html.MvcForm"/> instance.
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.Ajax.AjaxExtensions.BeginRouteForm(System.Web.Mvc.AjaxHelper,System.String,System.Web.Mvc.Ajax.AjaxOptions)">
+ <summary>
+ Writes an opening form tag to the response while returning an <see cref="T:System.Web.Mvc.Html.MvcForm"/>
+ instance. Can be used in a using block, in which case it renders the closing form tag at the end of the
+ using block. The form is submitted asynchronously using JavaScript.
+ </summary>
+ <param name="ajaxHelper">The ajax helper.</param>
+ <param name="routeName">The name of the route to use to obtain the form post URL.</param>
+ <param name="ajaxOptions">An object providing options for the asynchronous request.</param>
+ <returns>
+ An <see cref="T:System.Web.Mvc.Html.MvcForm"/> instance.
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.Ajax.AjaxExtensions.BeginRouteForm(System.Web.Mvc.AjaxHelper,System.String,System.Object,System.Web.Mvc.Ajax.AjaxOptions)">
+ <summary>
+ Writes an opening form tag to the response while returning an <see cref="T:System.Web.Mvc.Html.MvcForm"/>
+ instance. Can be used in a using block, in which case it renders the closing form tag at the end of the
+ using block. The form is submitted asynchronously using JavaScript.
+ </summary>
+ <param name="ajaxHelper">The ajax helper.</param>
+ <param name="routeName">The name of the route to use to obtain the form post URL.</param>
+ <param name="routeValues">An object containing the parameters for a route. The parameters are retrieved via reflection by examining the properties of the object. Typically created using object initializer syntax.</param>
+ <param name="ajaxOptions">An object providing options for the asynchronous request.</param>
+ <returns>
+ An <see cref="T:System.Web.Mvc.Html.MvcForm"/> instance.
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.Ajax.AjaxExtensions.BeginRouteForm(System.Web.Mvc.AjaxHelper,System.String,System.Object,System.Web.Mvc.Ajax.AjaxOptions,System.Object)">
+ <summary>
+ Writes an opening form tag to the response while returning an <see cref="T:System.Web.Mvc.Html.MvcForm"/>
+ instance. Can be used in a using block, in which case it renders the closing form tag at the end of the
+ using block. The form is submitted asynchronously using JavaScript.
+ </summary>
+ <param name="ajaxHelper">The ajax helper.</param>
+ <param name="routeName">The name of the route to use to obtain the form post URL.</param>
+ <param name="routeValues">An object containing the parameters for a route. The parameters are retrieved via reflection by examining the properties of the object. Typically created using object initializer syntax.</param>
+ <param name="ajaxOptions">An object providing options for the asynchronous request.</param>
+ <param name="htmlAttributes">An object containing the HTML attributes for the element. The parameters are retrieved via reflection by examining the properties of the object. Typically created using object initializer syntax.</param>
+ <returns>
+ An <see cref="T:System.Web.Mvc.Html.MvcForm"/> instance.
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.Ajax.AjaxExtensions.BeginRouteForm(System.Web.Mvc.AjaxHelper,System.String,System.Web.Routing.RouteValueDictionary,System.Web.Mvc.Ajax.AjaxOptions)">
+ <summary>
+ Writes an opening form tag to the response while returning an <see cref="T:System.Web.Mvc.Html.MvcForm"/>
+ instance. Can be used in a using block, in which case it renders the closing form tag at the end of the
+ using block. The form is submitted asynchronously using JavaScript.
+ </summary>
+ <param name="ajaxHelper">The ajax helper.</param>
+ <param name="routeName">The name of the route to use to obtain the form post URL.</param>
+ <param name="routeValues">An object containing the parameters for a route.</param>
+ <param name="ajaxOptions">An object providing options for the asynchronous request.</param>
+ <returns>
+ An <see cref="T:System.Web.Mvc.Html.MvcForm"/> instance.
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.Ajax.AjaxExtensions.BeginRouteForm(System.Web.Mvc.AjaxHelper,System.String,System.Web.Routing.RouteValueDictionary,System.Web.Mvc.Ajax.AjaxOptions,System.Collections.Generic.IDictionary{System.String,System.Object})">
+ <summary>
+ Writes an opening form tag to the response while returning an <see cref="T:System.Web.Mvc.Html.MvcForm"/>
+ instance. Can be used in a using block, in which case it renders the closing form tag at the end of the
+ using block. The form is submitted asynchronously using JavaScript.
+ </summary>
+ <param name="ajaxHelper">The ajax helper.</param>
+ <param name="routeName">The name of the route to use to obtain the form post URL.</param>
+ <param name="routeValues">An object containing the parameters for a route.</param>
+ <param name="ajaxOptions">An object providing options for the asynchronous request.</param>
+ <param name="htmlAttributes">An object containing the HTML attributes for the element.</param>
+ <returns>
+ An <see cref="T:System.Web.Mvc.Html.MvcForm"/> instance.
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.Ajax.AjaxExtensions.RouteLink(System.Web.Mvc.AjaxHelper,System.String,System.Object,System.Web.Mvc.Ajax.AjaxOptions)">
+ <summary>
+ Returns an anchor tag containing the virtual path for the specified route values, such that when the link is clicked,
+ a request is made to the virtual path asynchronously via JavaScript.
+ </summary>
+ <param name="ajaxHelper">The ajax helper.</param>
+ <param name="linkText">The inner text of the anchor tag.</param>
+ <param name="routeValues">An object containing the parameters for a route. The parameters are retrieved via reflection by examining the properties of the object. Typically created using object initializer syntax.</param>
+ <param name="ajaxOptions">An object providing options for the asynchronous request.</param>
+ <returns>An anchor tag.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Ajax.AjaxExtensions.RouteLink(System.Web.Mvc.AjaxHelper,System.String,System.Object,System.Web.Mvc.Ajax.AjaxOptions,System.Object)">
+ <summary>
+ Returns an anchor tag containing the virtual path for the specified route values, such that when the link is clicked,
+ a request is made to the virtual path asynchronously via JavaScript.
+ </summary>
+ <param name="ajaxHelper">The ajax helper.</param>
+ <param name="linkText">The inner text of the anchor tag.</param>
+ <param name="routeValues">An object containing the parameters for a route. The parameters are retrieved via reflection by examining the properties of the object. Typically created using object initializer syntax.</param>
+ <param name="ajaxOptions">An object providing options for the asynchronous request.</param>
+ <param name="htmlAttributes">An object containing the HTML attributes for the element. The attributes are retrieved via reflection by examining the properties of the object. Typically created using object initializer syntax.</param>
+ <returns>An anchor tag.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Ajax.AjaxExtensions.RouteLink(System.Web.Mvc.AjaxHelper,System.String,System.Web.Routing.RouteValueDictionary,System.Web.Mvc.Ajax.AjaxOptions)">
+ <summary>
+ Returns an anchor tag containing the virtual path for the specified route values, such that when the link is clicked,
+ a request is made to the virtual path asynchronously via JavaScript.
+ </summary>
+ <param name="ajaxHelper">The ajax helper.</param>
+ <param name="linkText">The inner text of the anchor tag.</param>
+ <param name="routeValues">An object containing the parameters for a route.</param>
+ <param name="ajaxOptions">An object providing options for the asynchronous request.</param>
+ <returns>An anchor tag.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Ajax.AjaxExtensions.RouteLink(System.Web.Mvc.AjaxHelper,System.String,System.Web.Routing.RouteValueDictionary,System.Web.Mvc.Ajax.AjaxOptions,System.Collections.Generic.IDictionary{System.String,System.Object})">
+ <summary>
+ Returns an anchor tag containing the virtual path for the specified route values, such that when the link is clicked,
+ a request is made to the virtual path asynchronously via JavaScript.
+ </summary>
+ <param name="ajaxHelper">The ajax helper.</param>
+ <param name="linkText">The inner text of the anchor tag.</param>
+ <param name="routeValues">An object containing the parameters for a route.</param>
+ <param name="ajaxOptions">An object providing options for the asynchronous request.</param>
+ <param name="htmlAttributes">An object containing the HTML attributes for the element.</param>
+ <returns>An anchor tag.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Ajax.AjaxExtensions.RouteLink(System.Web.Mvc.AjaxHelper,System.String,System.String,System.Web.Mvc.Ajax.AjaxOptions)">
+ <summary>
+ Returns an anchor tag containing the virtual path for the specified route values, such that when the link is clicked,
+ a request is made to the virtual path asynchronously via JavaScript.
+ </summary>
+ <param name="ajaxHelper">The ajax helper.</param>
+ <param name="linkText">The inner text of the anchor tag.</param>
+ <param name="routeName">The name of the route to use to obtain the form post URL.</param>
+ <param name="ajaxOptions">An object providing options for the asynchronous request.</param>
+ <returns>An anchor tag.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Ajax.AjaxExtensions.RouteLink(System.Web.Mvc.AjaxHelper,System.String,System.String,System.Web.Mvc.Ajax.AjaxOptions,System.Object)">
+ <summary>
+ Returns an anchor tag containing the virtual path for the specified route values, such that when the link is clicked,
+ a request is made to the virtual path asynchronously via JavaScript.
+ </summary>
+ <param name="ajaxHelper">The ajax helper.</param>
+ <param name="linkText">The inner text of the anchor tag.</param>
+ <param name="routeName">The name of the route to use to obtain the form post URL.</param>
+ <param name="ajaxOptions">An object providing options for the asynchronous request.</param>
+ <param name="htmlAttributes">An object containing the HTML attributes for the element. The attributes are retrieved via reflection by examining the properties of the object. Typically created using object initializer syntax.</param>
+ <returns>An anchor tag.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Ajax.AjaxExtensions.RouteLink(System.Web.Mvc.AjaxHelper,System.String,System.String,System.Web.Mvc.Ajax.AjaxOptions,System.Collections.Generic.IDictionary{System.String,System.Object})">
+ <summary>
+ Returns an anchor tag containing the virtual path for the specified route values, such that when the link is clicked,
+ a request is made to the virtual path asynchronously via JavaScript.
+ </summary>
+ <param name="ajaxHelper">The ajax helper.</param>
+ <param name="linkText">The inner text of the anchor tag.</param>
+ <param name="routeName">The name of the route to use to obtain the form post URL.</param>
+ <param name="ajaxOptions">An object providing options for the asynchronous request.</param>
+ <param name="htmlAttributes">An object containing the HTML attributes for the element.</param>
+ <returns>An anchor tag.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Ajax.AjaxExtensions.RouteLink(System.Web.Mvc.AjaxHelper,System.String,System.String,System.Object,System.Web.Mvc.Ajax.AjaxOptions)">
+ <summary>
+ Returns an anchor tag containing the virtual path for the specified route values, such that when the link is clicked,
+ a request is made to the virtual path asynchronously via JavaScript.
+ </summary>
+ <param name="ajaxHelper">The ajax helper.</param>
+ <param name="linkText">The inner text of the anchor tag.</param>
+ <param name="routeName">The name of the route to use to obtain the form post URL.</param>
+ <param name="routeValues">An object containing the parameters for a route. The parameters are retrieved via reflection by examining the properties of the object. Typically created using object initializer syntax.</param>
+ <param name="ajaxOptions">An object providing options for the asynchronous request.</param>
+ <returns>An anchor tag.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Ajax.AjaxExtensions.RouteLink(System.Web.Mvc.AjaxHelper,System.String,System.String,System.Object,System.Web.Mvc.Ajax.AjaxOptions,System.Object)">
+ <summary>
+ Returns an anchor tag containing the virtual path for the specified route values, such that when the link is clicked,
+ a request is made to the virtual path asynchronously via JavaScript.
+ </summary>
+ <param name="ajaxHelper">The ajax helper.</param>
+ <param name="linkText">The inner text of the anchor tag.</param>
+ <param name="routeName">The name of the route to use to obtain the form post URL.</param>
+ <param name="routeValues">An object containing the parameters for a route. The parameters are retrieved via reflection by examining the properties of the object. Typically created using object initializer syntax.</param>
+ <param name="ajaxOptions">An object providing options for the asynchronous request.</param>
+ <param name="htmlAttributes">An object containing the HTML attributes for the element. The attributes are retrieved via reflection by examining the properties of the object. Typically created using object initializer syntax.</param>
+ <returns>An anchor tag.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Ajax.AjaxExtensions.RouteLink(System.Web.Mvc.AjaxHelper,System.String,System.String,System.Web.Routing.RouteValueDictionary,System.Web.Mvc.Ajax.AjaxOptions)">
+ <summary>
+ Returns an anchor tag containing the virtual path for the specified route values, such that when the link is clicked,
+ a request is made to the virtual path asynchronously via JavaScript.
+ </summary>
+ <param name="ajaxHelper">The ajax helper.</param>
+ <param name="linkText">The inner text of the anchor tag.</param>
+ <param name="routeName">The name of the route to use to obtain the form post URL.</param>
+ <param name="routeValues">An object containing the parameters for a route.</param>
+ <param name="ajaxOptions">An object providing options for the asynchronous request.</param>
+ <returns>An anchor tag.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Ajax.AjaxExtensions.RouteLink(System.Web.Mvc.AjaxHelper,System.String,System.String,System.Web.Routing.RouteValueDictionary,System.Web.Mvc.Ajax.AjaxOptions,System.Collections.Generic.IDictionary{System.String,System.Object})">
+ <summary>
+ Returns an anchor tag containing the virtual path for the specified route values, such that when the link is clicked,
+ a request is made to the virtual path asynchronously via JavaScript.
+ </summary>
+ <param name="ajaxHelper">The ajax helper.</param>
+ <param name="linkText">The inner text of the anchor tag.</param>
+ <param name="routeName">The name of the route to use to obtain the form post URL.</param>
+ <param name="routeValues">An object containing the parameters for a route.</param>
+ <param name="ajaxOptions">An object providing options for the asynchronous request.</param>
+ <param name="htmlAttributes">An object containing the HTML attributes for the element.</param>
+ <returns>An anchor tag.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Ajax.AjaxExtensions.RouteLink(System.Web.Mvc.AjaxHelper,System.String,System.String,System.String,System.String,System.String,System.Web.Routing.RouteValueDictionary,System.Web.Mvc.Ajax.AjaxOptions,System.Collections.Generic.IDictionary{System.String,System.Object})">
+ <summary>
+ Returns an anchor tag containing the virtual path for the specified route values, such that when the link is clicked,
+ a request is made to the virtual path asynchronously via JavaScript.
+ </summary>
+ <param name="ajaxHelper">The ajax helper.</param>
+ <param name="linkText">The inner text of the anchor tag.</param>
+ <param name="routeName">The name of the route to use to obtain the form post URL.</param>
+ <param name="protocol">The protocol for the URL such as "http" or "https".</param>
+ <param name="hostName">The host name for the URL.</param>
+ <param name="fragment">The URL fragment name (also known as anchor name).</param>
+ <param name="routeValues">An object containing the parameters for a route.</param>
+ <param name="ajaxOptions">An object providing options for the asynchronous request.</param>
+ <param name="htmlAttributes">An object containing the HTML attributes for the element.</param>
+ <returns>An anchor tag.</returns>
+ </member>
+ <member name="T:System.Web.Mvc.AuthorizationContext">
+ <summary>
+ Provides the context for using an <see cref="T:System.Web.Mvc.AuthorizeAttribute"/>.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.AuthorizationContext.#ctor">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.AuthorizationContext"/> class.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.AuthorizationContext.#ctor(System.Web.Mvc.ControllerContext)">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.AuthorizationContext"/> class.
+ </summary>
+ <param name="controllerContext">The controller context.</param>
+ </member>
+ <member name="P:System.Web.Mvc.AuthorizationContext.Result">
+ <summary>
+ Gets or sets the result.
+ </summary>
+ <value>The result.</value>
+ </member>
+ <member name="T:System.Web.Mvc.ViewMasterPage">
+ <summary>
+ Represents the information needed to build a master view page.
+ </summary>
+ </member>
+ <member name="P:System.Web.Mvc.ViewMasterPage.Ajax">
+ <summary>
+ Gets the ajax.
+ </summary>
+ <value>The ajax.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ViewMasterPage.Html">
+ <summary>
+ Gets the HTML.
+ </summary>
+ <value>The HTML.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ViewMasterPage.Model">
+ <summary>
+ Gets the model.
+ </summary>
+ <value>The model.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ViewMasterPage.TempData">
+ <summary>
+ Gets the temporary data.
+ </summary>
+ <value>The temporary data.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ViewMasterPage.Url">
+ <summary>
+ Gets the URL.
+ </summary>
+ <value>The URL.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ViewMasterPage.ViewContext">
+ <summary>
+ Gets the view context.
+ </summary>
+ <value>The view context.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ViewMasterPage.ViewData">
+ <summary>
+ Gets the view data.
+ </summary>
+ <value>The view data.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ViewMasterPage.Writer">
+ <summary>
+ Gets the writer.
+ </summary>
+ <value>The writer.</value>
+ </member>
+ <member name="T:System.Web.Mvc.NonActionAttribute">
+ <summary>
+ Attribute that is use to indicated that a controller method is not an action method.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.NonActionAttribute.IsValidForRequest(System.Web.Mvc.ControllerContext,System.Reflection.MethodInfo)">
+ <summary>
+ Determines whether the attribute marks a valid non-action method given the specified controller context.
+ </summary>
+ <param name="controllerContext">The controller context.</param>
+ <param name="methodInfo">The method info.</param>
+ <returns>
+ <c>true</c> if the attribute marks a valid non-action method; otherwise, <c>false</c>.
+ </returns>
+ </member>
+ <member name="T:System.Web.Mvc.NameValueCollectionExtensions">
+ <summary>
+ Extends a <c>NameValueCollection</c> so it copies the collection to specified dictionary./>
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.NameValueCollectionExtensions.CopyTo(System.Collections.Specialized.NameValueCollection,System.Collections.Generic.IDictionary{System.String,System.Object})">
+ <summary>
+ Copies to a given collection to the specified destination.
+ </summary>
+ <param name="collection">The collection.</param>
+ <param name="destination">The destination.</param>
+ </member>
+ <member name="M:System.Web.Mvc.NameValueCollectionExtensions.CopyTo(System.Collections.Specialized.NameValueCollection,System.Collections.Generic.IDictionary{System.String,System.Object},System.Boolean)">
+ <summary>
+ Copies to a given collection to the specified destination.
+ </summary>
+ <param name="collection">The collection.</param>
+ <param name="destination">The destination.</param>
+ <param name="replaceEntries">If set to <c>true</c>, this method replaces the previous entries.</param>
+ </member>
+ <member name="T:System.Web.Mvc.ContentResult">
+ <summary>
+ Represents a user-defined content type that is the result of an action method.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.ContentResult.ExecuteResult(System.Web.Mvc.ControllerContext)">
+ <summary>
+ Enables processing of the result of an action method by a custom type that inherits from <see cref="T:System.Web.Mvc.ActionResult"/>.
+ </summary>
+ <param name="context">The context within which the result is executed.</param>
+ </member>
+ <member name="P:System.Web.Mvc.ContentResult.Content">
+ <summary>
+ Gets or sets the content.
+ </summary>
+ <value>The content.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ContentResult.ContentEncoding">
+ <summary>
+ Gets or sets the content encoding.
+ </summary>
+ <value>The content encoding.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ContentResult.ContentType">
+ <summary>
+ Gets or sets the type of the content.
+ </summary>
+ <value>The type of the content.</value>
+ </member>
+ <member name="T:System.Web.Mvc.Html.SelectExtensions">
+ <summary>
+ Represents support for making selects in a list.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.Html.SelectExtensions.DropDownList(System.Web.Mvc.HtmlHelper,System.String,System.String)">
+ <summary>
+ Returns a select tag used to select a single option from a set of possible choices.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="name">The name of the form field and used as a key to look up possible options. If ViewData[name] implements IEnumerable of <see cref="T:System.Web.Mvc.SelectListItem"/>.</param>
+ <param name="optionLabel">Provides the text for a default empty valued option, if it is not null.</param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.SelectExtensions.DropDownList(System.Web.Mvc.HtmlHelper,System.String,System.Collections.Generic.IEnumerable{System.Web.Mvc.SelectListItem},System.String)">
+ <summary>
+ Returns a select tag used to select a single option from a set of possible choices.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="name">The name of the form field and used as a key to look up possible options. If ViewData[name] implements IEnumerable of <see cref="T:System.Web.Mvc.SelectListItem"/>.</param>
+ <param name="selectList">The enumeration of SelectListItem instances used to populate the drop-down list.</param>
+ <param name="optionLabel">Provides the text for a default empty valued option, if it is not null.</param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.SelectExtensions.DropDownList(System.Web.Mvc.HtmlHelper,System.String,System.Collections.Generic.IEnumerable{System.Web.Mvc.SelectListItem},System.String,System.Object)">
+ <summary>
+ Returns a select tag used to select a single option from a set of possible choices.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="name">The name of the form field and used as a key to look up possible options. If ViewData[name] implements IEnumerable of <see cref="T:System.Web.Mvc.SelectListItem"/>.</param>
+ <param name="selectList">The enumeration of SelectListItem instances used to populate the drop-down list.</param>
+ <param name="optionLabel">Provides the text for a default empty valued option, if it is not null.</param>
+ <param name="htmlAttributes">An object containing the HTML attributes for the element. The attributes are retrieved via reflection by examining the properties of the object. Typically created using object initializer syntax.</param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.SelectExtensions.DropDownList(System.Web.Mvc.HtmlHelper,System.String)">
+ <summary>
+ Returns a select tag used to select a single option from a set of possible choices.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="name">The name of the form field and used as a key to look up possible options. If ViewData[name] implements IEnumerable of <see cref="T:System.Web.Mvc.SelectListItem"/>.</param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.SelectExtensions.DropDownList(System.Web.Mvc.HtmlHelper,System.String,System.Collections.Generic.IEnumerable{System.Web.Mvc.SelectListItem})">
+ <summary>
+ Returns a select tag used to select a single option from a set of possible choices.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="name">The name of the form field and used as a key to look up possible options. If ViewData[name] implements IEnumerable of <see cref="T:System.Web.Mvc.SelectListItem"/>.</param>
+ <param name="selectList">The enumeration of SelectListItem instances used to populate the drop-down list.</param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.SelectExtensions.DropDownList(System.Web.Mvc.HtmlHelper,System.String,System.Collections.Generic.IEnumerable{System.Web.Mvc.SelectListItem},System.Object)">
+ <summary>
+ Returns a select tag used to select a single option from a set of possible choices.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="name">The name of the form field and used as a key to look up possible options. If ViewData[name] implements IEnumerable of <see cref="T:System.Web.Mvc.SelectListItem"/>.</param>
+ <param name="selectList">The enumeration of SelectListItem instances used to populate the drop-down list.</param>
+ <param name="htmlAttributes">An object containing the HTML attributes for the element. The attributes are retrieved via reflection by examining the properties of the object. Typically created using object initializer syntax.</param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.SelectExtensions.DropDownList(System.Web.Mvc.HtmlHelper,System.String,System.Collections.Generic.IEnumerable{System.Web.Mvc.SelectListItem},System.Collections.Generic.IDictionary{System.String,System.Object})">
+ <summary>
+ Returns a select tag used to select a single option from a set of possible choices.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="name">The name of the form field and used as a key to look up possible options. If ViewData[name] implements IEnumerable of <see cref="T:System.Web.Mvc.SelectListItem"/>.</param>
+ <param name="selectList">The enumeration of SelectListItem instances used to populate the drop-down list.</param>
+ <param name="htmlAttributes">An object containing the HTML attributes for the element.</param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.SelectExtensions.DropDownList(System.Web.Mvc.HtmlHelper,System.String,System.Collections.Generic.IEnumerable{System.Web.Mvc.SelectListItem},System.String,System.Collections.Generic.IDictionary{System.String,System.Object})">
+ <summary>
+ Returns a select tag used to select a single option from a set of possible choices.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="name">The name of the form field and used as a key to look up possible options. If ViewData[name] implements IEnumerable of <see cref="T:System.Web.Mvc.SelectListItem"/>.</param>
+ <param name="selectList">The enumeration of SelectListItem instances used to populate the drop-down list.</param>
+ <param name="optionLabel">Provides the text for a default empty valued option, if it is not null.</param>
+ <param name="htmlAttributes">An object containing the HTML attributes for the element.</param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.SelectExtensions.ListBox(System.Web.Mvc.HtmlHelper,System.String)">
+ <summary>
+ Returns a select tag used to select a multiple options from a set of possible choices.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="name">The name of the form field and used as a key to look up possible options. If ViewData[name] implements IEnumerable of <see cref="T:System.Web.Mvc.SelectListItem"/>.</param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.SelectExtensions.ListBox(System.Web.Mvc.HtmlHelper,System.String,System.Collections.Generic.IEnumerable{System.Web.Mvc.SelectListItem})">
+ <summary>
+ Returns a select tag used to select a multiple options from a set of possible choices.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="name">The name of the form field and used as a key to look up possible options. If ViewData[name] implements IEnumerable of <see cref="T:System.Web.Mvc.SelectListItem"/>.</param>
+ <param name="selectList">The enumeration of SelectListItem instances used to populate the drop-down list.</param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.SelectExtensions.ListBox(System.Web.Mvc.HtmlHelper,System.String,System.Collections.Generic.IEnumerable{System.Web.Mvc.SelectListItem},System.Object)">
+ <summary>
+ Returns a select tag used to select a multiple options from a set of possible choices.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="name">The name of the form field and used as a key to look up possible options. If ViewData[name] implements IEnumerable of <see cref="T:System.Web.Mvc.SelectListItem"/>.</param>
+ <param name="selectList">The enumeration of SelectListItem instances used to populate the drop-down list.</param>
+ <param name="htmlAttributes">An object containing the HTML attributes for the element. The attributes are retrieved via reflection by examining the properties of the object. Typically created using object initializer syntax.</param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.SelectExtensions.ListBox(System.Web.Mvc.HtmlHelper,System.String,System.Collections.Generic.IEnumerable{System.Web.Mvc.SelectListItem},System.Collections.Generic.IDictionary{System.String,System.Object})">
+ <summary>
+ Returns a select tag used to select a multiple options from a set of possible choices.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="name">The name of the form field and used as a key to look up possible options. If ViewData[name] implements IEnumerable of <see cref="T:System.Web.Mvc.SelectListItem"/>.</param>
+ <param name="selectList">The enumeration of SelectListItem instances used to populate the drop-down list.</param>
+ <param name="htmlAttributes">An object containing the HTML attributes for the element. The attributes are retrieved via reflection by examining the properties of the object. Typically created using object initializer syntax.</param>
+ <returns></returns>
+ </member>
+ <member name="T:System.Web.Mvc.Html.RenderPartialExtensions">
+ <summary>
+ Represents support for rendering a partial view.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.Html.RenderPartialExtensions.RenderPartial(System.Web.Mvc.HtmlHelper,System.String)">
+ <summary>
+ Renders the specified partial view.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="partialViewName">The name of the partial view.</param>
+ </member>
+ <member name="M:System.Web.Mvc.Html.RenderPartialExtensions.RenderPartial(System.Web.Mvc.HtmlHelper,System.String,System.Web.Mvc.ViewDataDictionary)">
+ <summary>
+ Renders the specified partial view, replacing its ViewData property with the
+ supplied <see cref="T:System.Web.Mvc.ViewDataDictionary">ViewDataDictionary</see>.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="partialViewName">The name of the partial view.</param>
+ <param name="viewData">The view data.</param>
+ </member>
+ <member name="M:System.Web.Mvc.Html.RenderPartialExtensions.RenderPartial(System.Web.Mvc.HtmlHelper,System.String,System.Object)">
+ <summary>
+ Renders the specified partial view, passing in a copy of the current
+ <see cref="T:System.Web.Mvc.ViewDataDictionary">ViewDataDictionary</see>, but
+ with the Model property set to the specified model.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="partialViewName">The name of the partial view.</param>
+ <param name="model">The model.</param>
+ </member>
+ <member name="M:System.Web.Mvc.Html.RenderPartialExtensions.RenderPartial(System.Web.Mvc.HtmlHelper,System.String,System.Object,System.Web.Mvc.ViewDataDictionary)">
+ <summary>
+ Renders the specified partial view, replacing the partial view's ViewData property with the
+ supplied <see cref="T:System.Web.Mvc.ViewDataDictionary">ViewDataDictionary</see>. The Model
+ property of the view data is set to the specified model.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="partialViewName">The name of the partial view.</param>
+ <param name="model">The model for the partial view.</param>
+ <param name="viewData">The view data for the partial view.</param>
+ </member>
+ <member name="T:System.Web.Mvc.FormMethod">
+ <summary>
+ Represents the HTTP request type for a Form.
+ </summary>
+ </member>
+ <member name="F:System.Web.Mvc.FormMethod.Get">
+ <summary>
+ GET request.
+ </summary>
+ </member>
+ <member name="F:System.Web.Mvc.FormMethod.Post">
+ <summary>
+ POST request.
+ </summary>
+ </member>
+ <member name="T:System.Web.Mvc.ReflectedActionDescriptor">
+ <summary>
+ Contains information that describes a reflected action method.
+ </summary>
+ </member>
+ <member name="T:System.Web.Mvc.ActionDescriptor">
+ <summary>
+ Provides information about an action method, such as its name, controller, parameters, attributes, and filters.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.ActionDescriptor.Execute(System.Web.Mvc.ControllerContext,System.Collections.Generic.IDictionary{System.String,System.Object})">
+ <summary>
+ Executes the action method with the given parameters and the specified controller context.
+ </summary>
+ <param name="controllerContext">The controller context.</param>
+ <param name="parameters">The parameters.</param>
+ <returns>The result of executing the action method.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.ActionDescriptor.GetCustomAttributes(System.Boolean)">
+ <summary>
+ Returns an array of all of the custom attributes defined on this member, excluding named attributes, or an empty array if there are no custom attributes.
+ </summary>
+ <param name="inherit">When true, look up the hierarchy chain for the inherited custom attribute.</param>
+ <returns>
+ An array of Objects representing custom attributes, or an empty array.
+ </returns>
+ <exception cref="T:System.TypeLoadException">
+ The custom attribute type cannot be loaded.
+ </exception>
+ <exception cref="T:System.Reflection.AmbiguousMatchException">
+ There is more than one attribute of type <paramref name="attributeType"/> defined on this member.
+ </exception>
+ </member>
+ <member name="M:System.Web.Mvc.ActionDescriptor.GetCustomAttributes(System.Type,System.Boolean)">
+ <summary>
+ Returns an array of custom attributes defined on this member, identified by type, or an empty array if there are no custom attributes of that type.
+ </summary>
+ <param name="attributeType">The type of the custom attributes.</param>
+ <param name="inherit">When true, look up the hierarchy chain for the inherited custom attribute.</param>
+ <returns>
+ An array of Objects representing custom attributes, or an empty array.
+ </returns>
+ <exception cref="T:System.TypeLoadException">
+ The custom attribute type cannot be loaded.
+ </exception>
+ <exception cref="T:System.Reflection.AmbiguousMatchException">
+ There is more than one attribute of type <paramref name="attributeType"/> defined on this member.
+ </exception>
+ </member>
+ <member name="M:System.Web.Mvc.ActionDescriptor.GetFilters">
+ <summary>
+ Gets the filters associated with this action method.
+ </summary>
+ <returns>The filters.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.ActionDescriptor.GetParameters">
+ <summary>
+ Gets the parameters.
+ </summary>
+ <returns>The parameters.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.ActionDescriptor.GetSelectors">
+ <summary>
+ Gets the selectors.
+ </summary>
+ <returns>The selectors.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.ActionDescriptor.IsDefined(System.Type,System.Boolean)">
+ <summary>
+ Indicates whether one or more instance of <paramref name="attributeType"/> is defined on this member.
+ </summary>
+ <param name="attributeType">The type of the custom attributes.</param>
+ <param name="inherit">When true, look up the hierarchy chain for the inherited custom attribute.</param>
+ <returns>
+ true if the <paramref name="attributeType"/> is defined on this member; false otherwise.
+ </returns>
+ </member>
+ <member name="P:System.Web.Mvc.ActionDescriptor.ActionName">
+ <summary>
+ Gets the name of the action.
+ </summary>
+ <value>The name of the action.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ActionDescriptor.ControllerDescriptor">
+ <summary>
+ Gets the controller descriptor.
+ </summary>
+ <value>The controller descriptor.</value>
+ </member>
+ <member name="M:System.Web.Mvc.ReflectedActionDescriptor.#ctor(System.Reflection.MethodInfo,System.String,System.Web.Mvc.ControllerDescriptor)">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.ReflectedActionDescriptor"/> class.
+ </summary>
+ <param name="methodInfo">The action method information.</param>
+ <param name="actionName">The name of the action.</param>
+ <param name="controllerDescriptor">The controller descriptor.</param>
+ </member>
+ <member name="M:System.Web.Mvc.ReflectedActionDescriptor.Execute(System.Web.Mvc.ControllerContext,System.Collections.Generic.IDictionary{System.String,System.Object})">
+ <summary>
+ Executes the specified controller context.
+ </summary>
+ <param name="controllerContext">The controller context.</param>
+ <param name="parameters">The parameters.</param>
+ <returns>The action return value.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.ReflectedActionDescriptor.GetCustomAttributes(System.Boolean)">
+ <summary>
+ Returns an array of all of the custom attributes defined on this member, excluding named attributes, or an empty array if there are no custom attributes.
+ </summary>
+ <param name="inherit">When true, look up the hierarchy chain for the inherited custom attribute.</param>
+ <returns>
+ An array of Objects representing custom attributes, or an empty array.
+ </returns>
+ <exception cref="T:System.TypeLoadException">
+ The custom attribute type cannot be loaded.
+ </exception>
+ <exception cref="T:System.Reflection.AmbiguousMatchException">
+ There is more than one attribute of type <paramref name="attributeType"/> defined on this member.
+ </exception>
+ </member>
+ <member name="M:System.Web.Mvc.ReflectedActionDescriptor.GetCustomAttributes(System.Type,System.Boolean)">
+ <summary>
+ Returns an array of custom attributes defined on this member, identified by type, or an empty array if there are no custom attributes of that type.
+ </summary>
+ <param name="attributeType">The type of the custom attributes.</param>
+ <param name="inherit">When true, look up the hierarchy chain for the inherited custom attribute.</param>
+ <returns>
+ An array of Objects representing custom attributes, or an empty array.
+ </returns>
+ <exception cref="T:System.TypeLoadException">
+ The custom attribute type cannot be loaded.
+ </exception>
+ <exception cref="T:System.Reflection.AmbiguousMatchException">
+ There is more than one attribute of type <paramref name="attributeType"/> defined on this member.
+ </exception>
+ </member>
+ <member name="M:System.Web.Mvc.ReflectedActionDescriptor.GetFilters">
+ <summary>
+ Gets information about action filters.
+ </summary>
+ <returns>The filter information.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.ReflectedActionDescriptor.GetParameters">
+ <summary>
+ Gets the parameters of the action method.
+ </summary>
+ <returns>The parameters.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.ReflectedActionDescriptor.GetSelectors">
+ <summary>
+ Gets the action selectors.
+ </summary>
+ <returns>The action selectors.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.ReflectedActionDescriptor.IsDefined(System.Type,System.Boolean)">
+ <summary>
+ Indicates whether one or more instance of <paramref name="attributeType"/> is defined on this member.
+ </summary>
+ <param name="attributeType">The type of the custom attributes.</param>
+ <param name="inherit">When true, look up the hierarchy chain for the inherited custom attribute.</param>
+ <returns>
+ true if the <paramref name="attributeType"/> is defined on this member; false otherwise.
+ </returns>
+ </member>
+ <member name="P:System.Web.Mvc.ReflectedActionDescriptor.ActionName">
+ <summary>
+ Gets the name of the action.
+ </summary>
+ <value>The name of the action.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ReflectedActionDescriptor.ControllerDescriptor">
+ <summary>
+ Gets the controller descriptor.
+ </summary>
+ <value>The controller descriptor.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ReflectedActionDescriptor.MethodInfo">
+ <summary>
+ Gets the action method information.
+ </summary>
+ <value>The action method information.</value>
+ </member>
+ <member name="T:System.Web.Mvc.AjaxHelper`1">
+ <summary>
+ Represents support for rendering HTML in AJAX scenarios within a strongly typed view.
+ </summary>
+ <typeparam name="TModel">The type of the model.</typeparam>
+ </member>
+ <member name="M:System.Web.Mvc.AjaxHelper`1.#ctor(System.Web.Mvc.ViewContext,System.Web.Mvc.IViewDataContainer)">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.AjaxHelper`1"/> class.
+ </summary>
+ <param name="viewContext">The view context.</param>
+ <param name="viewDataContainer">The view data container.</param>
+ </member>
+ <member name="M:System.Web.Mvc.AjaxHelper`1.#ctor(System.Web.Mvc.ViewContext,System.Web.Mvc.IViewDataContainer,System.Web.Routing.RouteCollection)">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.AjaxHelper`1"/> class.
+ </summary>
+ <param name="viewContext">The view context.</param>
+ <param name="viewDataContainer">The view data container.</param>
+ <param name="routeCollection">The route collection.</param>
+ </member>
+ <member name="P:System.Web.Mvc.AjaxHelper`1.ViewData">
+ <summary>
+ Gets the current <see cref="T:System.Web.Mvc.ViewDataDictionary"/>.
+ </summary>
+ <value>The view data.</value>
+ </member>
+ <member name="T:System.Web.Mvc.MvcHandler">
+ <summary>
+ Selects the controller that will handle an HTTP request.
+ </summary>
+ </member>
+ <member name="F:System.Web.Mvc.MvcHandler.MvcVersionHeaderName">
+ <summary>
+ Header name of the ASP.NET MVC version.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.MvcHandler.#ctor(System.Web.Routing.RequestContext)">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.MvcHandler"/> class.
+ </summary>
+ <param name="requestContext">The request context.</param>
+ </member>
+ <member name="M:System.Web.Mvc.MvcHandler.AddVersionHeader(System.Web.HttpContextBase)">
+ <summary>
+ Adds the version header.
+ </summary>
+ <param name="httpContext">The HTTP context.</param>
+ </member>
+ <member name="M:System.Web.Mvc.MvcHandler.ProcessRequest(System.Web.HttpContext)">
+ <summary>
+ Processes the request.
+ </summary>
+ <param name="httpContext">The HTTP context.</param>
+ </member>
+ <member name="M:System.Web.Mvc.MvcHandler.ProcessRequest(System.Web.HttpContextBase)">
+ <summary>
+ Processes the request.
+ </summary>
+ <param name="httpContext">The HTTP context.</param>
+ </member>
+ <member name="M:System.Web.Mvc.MvcHandler.System#Web#IHttpHandler#ProcessRequest(System.Web.HttpContext)">
+ <summary>
+ Processes the request.
+ </summary>
+ <param name="httpContext">The HTTP context.</param>
+ </member>
+ <member name="P:System.Web.Mvc.MvcHandler.IsReusable">
+ <summary>
+ Gets a value indicating whether another request can use the <see cref="T:System.Web.IHttpHandler"/> instance.
+ </summary>
+ <value></value>
+ <returns>true if the <see cref="T:System.Web.IHttpHandler"/> instance is reusable; otherwise, false.
+ </returns>
+ </member>
+ <member name="P:System.Web.Mvc.MvcHandler.DisableMvcResponseHeader">
+ <summary>
+ Gets or sets a value indicating whether [disable MVC response header].
+ </summary>
+ <value>
+ <c>true</c> if [disable MVC response header]; otherwise, <c>false</c>.
+ </value>
+ </member>
+ <member name="P:System.Web.Mvc.MvcHandler.RequestContext">
+ <summary>
+ Gets the request context.
+ </summary>
+ <value>The request context.</value>
+ </member>
+ <member name="P:System.Web.Mvc.MvcHandler.System#Web#IHttpHandler#IsReusable">
+ <summary>
+ Gets a value indicating whether another request can use the <see cref="T:System.Web.IHttpHandler"/> instance.
+ </summary>
+ <value></value>
+ <returns>true if the <see cref="T:System.Web.IHttpHandler"/> instance is reusable; otherwise, false.
+ </returns>
+ </member>
+ <member name="T:System.Web.Mvc.HandleErrorInfo">
+ <summary>
+ Encapsulates information for handling an error thrown by an action method.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.HandleErrorInfo.#ctor(System.Exception,System.String,System.String)">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.HandleErrorInfo"/> class.
+ </summary>
+ <param name="exception">The exception.</param>
+ <param name="controllerName">Name of the controller.</param>
+ <param name="actionName">The name of the action.</param>
+ </member>
+ <member name="P:System.Web.Mvc.HandleErrorInfo.ActionName">
+ <summary>
+ Gets the name of the action.
+ </summary>
+ <value>The name of the action.</value>
+ </member>
+ <member name="P:System.Web.Mvc.HandleErrorInfo.ControllerName">
+ <summary>
+ Gets the name of the controller.
+ </summary>
+ <value>The name of the controller.</value>
+ </member>
+ <member name="P:System.Web.Mvc.HandleErrorInfo.Exception">
+ <summary>
+ Gets the exception.
+ </summary>
+ <value>The exception.</value>
+ </member>
+ <member name="T:System.Web.Mvc.Html.LinkExtensions">
+ <summary>
+ Represents support for HTML links in an application.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.Html.LinkExtensions.ActionLink(System.Web.Mvc.HtmlHelper,System.String,System.String)">
+ <summary>
+ Returns an anchor tag containing the virtual path to the specified action.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="linkText">The inner text of the anchor tag.</param>
+ <param name="actionName">The name of the action.</param>
+ <returns>An anchor tag.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.LinkExtensions.ActionLink(System.Web.Mvc.HtmlHelper,System.String,System.String,System.Object)">
+ <summary>
+ Returns an anchor tag containing the virtual path to the specified action.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="linkText">The inner text of the anchor tag.</param>
+ <param name="actionName">The name of the action.</param>
+ <param name="routeValues">An object containing the parameters for a route. The parameters are retrieved via reflection by examining the properties of the object. Typically created using object initializer syntax.</param>
+ <returns>An anchor tag.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.LinkExtensions.ActionLink(System.Web.Mvc.HtmlHelper,System.String,System.String,System.Object,System.Object)">
+ <summary>
+ Returns an anchor tag containing the virtual path to the specified action.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="linkText">The inner text of the anchor tag.</param>
+ <param name="actionName">The name of the action.</param>
+ <param name="routeValues">An object containing the parameters for a route. The parameters are retrieved via reflection by examining the properties of the object. Typically created using object initializer syntax.</param>
+ <param name="htmlAttributes">An object containing the HTML attributes for the element. The attributes are retrieved via reflection by examining the properties of the object. Typically created using object initializer syntax.</param>
+ <returns>An anchor tag.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.LinkExtensions.ActionLink(System.Web.Mvc.HtmlHelper,System.String,System.String,System.Web.Routing.RouteValueDictionary)">
+ <summary>
+ Returns an anchor tag containing the virtual path to the specified action.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="linkText">The inner text of the anchor tag.</param>
+ <param name="actionName">The name of the action.</param>
+ <param name="routeValues">An object containing the parameters for a route.</param>
+ <returns>An anchor tag.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.LinkExtensions.ActionLink(System.Web.Mvc.HtmlHelper,System.String,System.String,System.Web.Routing.RouteValueDictionary,System.Collections.Generic.IDictionary{System.String,System.Object})">
+ <summary>
+ Returns an anchor tag containing the virtual path to the specified action.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="linkText">The inner text of the anchor tag.</param>
+ <param name="actionName">The name of the action.</param>
+ <param name="routeValues">An object containing the parameters for a route.</param>
+ <param name="htmlAttributes">An object containing the HTML attributes for the element.</param>
+ <returns>An anchor tag.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.LinkExtensions.ActionLink(System.Web.Mvc.HtmlHelper,System.String,System.String,System.String)">
+ <summary>
+ Returns an anchor tag containing the virtual path to the specified action.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="linkText">The inner text of the anchor tag.</param>
+ <param name="actionName">The name of the action.</param>
+ <param name="controllerName">The name of the controller.</param>
+ <returns>An anchor tag.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.LinkExtensions.ActionLink(System.Web.Mvc.HtmlHelper,System.String,System.String,System.String,System.Object,System.Object)">
+ <summary>
+ Returns an anchor tag containing the virtual path to the specified action.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="linkText">The inner text of the anchor tag.</param>
+ <param name="actionName">The name of the action.</param>
+ <param name="controllerName">The name of the controller.</param>
+ <param name="routeValues">An object containing the parameters for a route. The parameters are retrieved via reflection by examining the properties of the object. Typically created using object initializer syntax.</param>
+ <param name="htmlAttributes">An object containing the HTML attributes for the element. The attributes are retrieved via reflection by examining the properties of the object. Typically created using object initializer syntax.</param>
+ <returns>An anchor tag.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.LinkExtensions.ActionLink(System.Web.Mvc.HtmlHelper,System.String,System.String,System.String,System.Web.Routing.RouteValueDictionary,System.Collections.Generic.IDictionary{System.String,System.Object})">
+ <summary>
+ Returns an anchor tag containing the virtual path to the specified action.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="linkText">The inner text of the anchor tag.</param>
+ <param name="actionName">The name of the action.</param>
+ <param name="controllerName">The name of the controller.</param>
+ <param name="routeValues">An object containing the parameters for a route.</param>
+ <param name="htmlAttributes">An object containing the HTML attributes for the element.</param>
+ <returns>An anchor tag.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.LinkExtensions.ActionLink(System.Web.Mvc.HtmlHelper,System.String,System.String,System.String,System.String,System.String,System.String,System.Object,System.Object)">
+ <summary>
+ Returns an anchor tag containing the URL to the specified action.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="linkText">The inner text of the anchor tag.</param>
+ <param name="actionName">The name of the action.</param>
+ <param name="controllerName">The name of the controller.</param>
+ <param name="protocol">The protocol for the URL such as "http" or "https".</param>
+ <param name="hostName">The host name for the URL.</param>
+ <param name="fragment">The URL fragment name (also known as anchor name).</param>
+ <param name="routeValues">An object containing the parameters for a route. The parameters are retrieved via reflection by examining the properties of the object. Typically created using object initializer syntax.</param>
+ <param name="htmlAttributes">An object containing the HTML attributes for the element. The attributes are retrieved via reflection by examining the properties of the object. Typically created using object initializer syntax.</param>
+ <returns>An anchor tag.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.LinkExtensions.ActionLink(System.Web.Mvc.HtmlHelper,System.String,System.String,System.String,System.String,System.String,System.String,System.Web.Routing.RouteValueDictionary,System.Collections.Generic.IDictionary{System.String,System.Object})">
+ <summary>
+ Returns an anchor tag containing the URL to the specified action.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="linkText">The inner text of the anchor tag.</param>
+ <param name="actionName">The name of the action.</param>
+ <param name="controllerName">The name of the controller.</param>
+ <param name="protocol">The protocol for the URL such as "http" or "https".</param>
+ <param name="hostName">The host name for the URL.</param>
+ <param name="fragment">The URL fragment name (also known as anchor name).</param>
+ <param name="routeValues">An object containing the parameters for a route.</param>
+ <param name="htmlAttributes">An object containing the HTML attributes for the element.</param>
+ <returns>An anchor tag.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.LinkExtensions.RouteLink(System.Web.Mvc.HtmlHelper,System.String,System.Object)">
+ <summary>
+ Returns an anchor tag containing the virtual path for the specified route values.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="linkText">The inner text of the anchor tag.</param>
+ <param name="routeValues">An object containing the parameters for a route. The parameters are retrieved via reflection by examining the properties of the object. Typically created using object initializer syntax.</param>
+ <returns>An anchor tag.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.LinkExtensions.RouteLink(System.Web.Mvc.HtmlHelper,System.String,System.Web.Routing.RouteValueDictionary)">
+ <summary>
+ Returns an anchor tag containing the virtual path for the specified route values.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="linkText">The inner text of the anchor tag.</param>
+ <param name="routeValues">An object containing the parameters for a route.</param>
+ <returns>An anchor tag.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.LinkExtensions.RouteLink(System.Web.Mvc.HtmlHelper,System.String,System.String,System.Object)">
+ <summary>
+ Returns an anchor tag containing the virtual path for the specified route values.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="linkText">The inner text of the anchor tag.</param>
+ <param name="routeName">The name of the route used to return a virtual path.</param>
+ <param name="routeValues">An object containing the parameters for a route. The parameters are retrieved via reflection by examining the properties of the object. Typically created using object initializer syntax.</param>
+ <returns>An anchor tag.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.LinkExtensions.RouteLink(System.Web.Mvc.HtmlHelper,System.String,System.String,System.Web.Routing.RouteValueDictionary)">
+ <summary>
+ Returns an anchor tag containing the virtual path for the specified route values.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="linkText">The inner text of the anchor tag.</param>
+ <param name="routeName">The name of the route used to return a virtual path.</param>
+ <param name="routeValues">An object containing the parameters for a route.</param>
+ <returns>An anchor tag.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.LinkExtensions.RouteLink(System.Web.Mvc.HtmlHelper,System.String,System.Object,System.Object)">
+ <summary>
+ Returns an anchor tag containing the virtual path for the specified route values.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="linkText">The inner text of the anchor tag.</param>
+ <param name="routeValues">An object containing the parameters for a route. The parameters are retrieved via reflection by examining the properties of the object. Typically created using object initializer syntax.</param>
+ <param name="htmlAttributes">An object containing the HTML attributes for the element. The attributes are retrieved via reflection by examining the properties of the object. Typically created using object initializer syntax.</param>
+ <returns>An anchor tag.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.LinkExtensions.RouteLink(System.Web.Mvc.HtmlHelper,System.String,System.Web.Routing.RouteValueDictionary,System.Collections.Generic.IDictionary{System.String,System.Object})">
+ <summary>
+ Returns an anchor tag containing the virtual path for the specified route values.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="linkText">The inner text of the anchor tag.</param>
+ <param name="routeValues">An object containing the parameters for a route.</param>
+ <param name="htmlAttributes">An object containing the HTML attributes for the element.</param>
+ <returns>An anchor tag.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.LinkExtensions.RouteLink(System.Web.Mvc.HtmlHelper,System.String,System.String,System.Object,System.Object)">
+ <summary>
+ Returns an anchor tag containing the virtual path for the specified route values.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="linkText">The inner text of the anchor tag.</param>
+ <param name="routeName">The name of the route used to return a virtual path.</param>
+ <param name="routeValues">An object containing the parameters for a route. The parameters are retrieved via reflection by examining the properties of the object. Typically created using object initializer syntax.</param>
+ <param name="htmlAttributes">An object containing the HTML attributes for the element. The attributes are retrieved via reflection by examining the properties of the object. Typically created using object initializer syntax.</param>
+ <returns>An anchor tag.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.LinkExtensions.RouteLink(System.Web.Mvc.HtmlHelper,System.String,System.String,System.Web.Routing.RouteValueDictionary,System.Collections.Generic.IDictionary{System.String,System.Object})">
+ <summary>
+ Returns an anchor tag containing the virtual path for the specified route values.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="linkText">The inner text of the anchor tag.</param>
+ <param name="routeName">The name of the route used to return a virtual path.</param>
+ <param name="routeValues">An object containing the parameters for a route.</param>
+ <param name="htmlAttributes">An object containing the HTML attributes for the element.</param>
+ <returns>An anchor tag.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.LinkExtensions.RouteLink(System.Web.Mvc.HtmlHelper,System.String,System.String,System.String,System.String,System.String,System.Object,System.Object)">
+ <summary>
+ Returns an anchor tag containing the URL for the specified route values.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="linkText">The inner text of the anchor tag.</param>
+ <param name="routeName">The name of the route used to return a virtual path.</param>
+ <param name="protocol">The protocol for the URL such as "http" or "https".</param>
+ <param name="hostName">The host name for the URL.</param>
+ <param name="fragment">The URL fragment name (also known as anchor name).</param>
+ <param name="routeValues">An object containing the parameters for a route. The parameters are retrieved via reflection by examining the properties of the object. Typically created using object initializer syntax.</param>
+ <param name="htmlAttributes">An object containing the HTML attributes for the element. The attributes are retrieved via reflection by examining the properties of the object. Typically created using object initializer syntax.</param>
+ <returns>An anchor tag.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.LinkExtensions.RouteLink(System.Web.Mvc.HtmlHelper,System.String,System.String,System.String,System.String,System.String,System.Web.Routing.RouteValueDictionary,System.Collections.Generic.IDictionary{System.String,System.Object})">
+ <summary>
+ Returns an anchor tag containing the URL for the specified route values.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="linkText">The inner text of the anchor tag.</param>
+ <param name="routeName">The name of the route used to return a virtual path.</param>
+ <param name="protocol">The protocol for the URL such as "http" or "https".</param>
+ <param name="hostName">The host name for the URL.</param>
+ <param name="fragment">The URL fragment name (also known as anchor name).</param>
+ <param name="routeValues">An object containing the parameters for a route.</param>
+ <param name="htmlAttributes">An object containing the HTML attributes for the element.</param>
+ <returns>An anchor tag.</returns>
+ </member>
+ <member name="T:System.Web.Mvc.Html.TextAreaExtensions">
+ <summary>
+ Represents support for HTML text area controls.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.Html.TextAreaExtensions.TextArea(System.Web.Mvc.HtmlHelper,System.String)">
+ <summary>
+ Returns a text area tag.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="name">The name.</param>
+ <returns>The text area.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.TextAreaExtensions.TextArea(System.Web.Mvc.HtmlHelper,System.String,System.Object)">
+ <summary>
+ Returns a text area tag.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="name">The name.</param>
+ <param name="htmlAttributes">The HTML attributes.</param>
+ <returns>The text area.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.TextAreaExtensions.TextArea(System.Web.Mvc.HtmlHelper,System.String,System.Collections.Generic.IDictionary{System.String,System.Object})">
+ <summary>
+ Returns a text area tag.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="name">The name.</param>
+ <param name="htmlAttributes">The HTML attributes.</param>
+ <returns>The text area.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.TextAreaExtensions.TextArea(System.Web.Mvc.HtmlHelper,System.String,System.String)">
+ <summary>
+ Returns a text area tag.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="name">The name.</param>
+ <param name="value">The value.</param>
+ <returns>The text area.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.TextAreaExtensions.TextArea(System.Web.Mvc.HtmlHelper,System.String,System.String,System.Object)">
+ <summary>
+ Returns a text area tag.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="name">The name.</param>
+ <param name="value">The value.</param>
+ <param name="htmlAttributes">The HTML attributes.</param>
+ <returns>The text area.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.TextAreaExtensions.TextArea(System.Web.Mvc.HtmlHelper,System.String,System.String,System.Collections.Generic.IDictionary{System.String,System.Object})">
+ <summary>
+ Returns a text area tag.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="name">The name.</param>
+ <param name="value">The value.</param>
+ <param name="htmlAttributes">The HTML attributes.</param>
+ <returns>The text area.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.TextAreaExtensions.TextArea(System.Web.Mvc.HtmlHelper,System.String,System.String,System.Int32,System.Int32,System.Object)">
+ <summary>
+ Returns a text area tag.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="name">The name.</param>
+ <param name="value">The value.</param>
+ <param name="rows">The rows.</param>
+ <param name="columns">The columns.</param>
+ <param name="htmlAttributes">The HTML attributes.</param>
+ <returns>The text area.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.TextAreaExtensions.TextArea(System.Web.Mvc.HtmlHelper,System.String,System.String,System.Int32,System.Int32,System.Collections.Generic.IDictionary{System.String,System.Object})">
+ <summary>
+ Returns a text area tag.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="name">The name.</param>
+ <param name="value">The value.</param>
+ <param name="rows">The rows.</param>
+ <param name="columns">The columns.</param>
+ <param name="htmlAttributes">The HTML attributes.</param>
+ <returns>The text area.</returns>
+ </member>
+ <member name="T:System.Web.Mvc.FilePathResult">
+ <summary>
+ Sends the contents of a file to the response.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.FilePathResult.#ctor(System.String,System.String)">
+ <summary>
+ Initializes an instance of <see cref="T:System.Web.Mvc.FilePathResult"/> with the specified file name and content type.
+ </summary>
+ <param name="fileName">The name of the file to send to the response.</param>
+ <param name="contentType">The content type of the response.</param>
+ </member>
+ <member name="M:System.Web.Mvc.FilePathResult.WriteFile(System.Web.HttpResponseBase)">
+ <summary>
+ Writes the file.
+ </summary>
+ <param name="response">The response.</param>
+ </member>
+ <member name="P:System.Web.Mvc.FilePathResult.FileName">
+ <summary>
+ The path to the file which is sent to the response.
+ </summary>
+ <value>The name of the file.</value>
+ </member>
+ <member name="T:System.Web.Mvc.ValidateInputAttribute">
+ <summary>
+ Attribute used to mark action methods whose input needs to be validated.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.ValidateInputAttribute.#ctor(System.Boolean)">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.ValidateInputAttribute"/> class.
+ </summary>
+ <param name="enableValidation">if set to <c>true</c> [enable validation].</param>
+ </member>
+ <member name="M:System.Web.Mvc.ValidateInputAttribute.OnAuthorization(System.Web.Mvc.AuthorizationContext)">
+ <summary>
+ Called when authorization is required.
+ </summary>
+ <param name="filterContext">The filter context.</param>
+ </member>
+ <member name="P:System.Web.Mvc.ValidateInputAttribute.EnableValidation">
+ <summary>
+ Gets a value indicating whether [enable validation].
+ </summary>
+ <value><c>true</c> if [enable validation]; otherwise, <c>false</c>.</value>
+ </member>
+ <member name="T:System.Web.Mvc.ValueProviderDictionary">
+ <summary>
+ Represents a collection of <see cref="T:System.Web.Mvc.ValueProviderResult"/> objects.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.ValueProviderDictionary.#ctor(System.Web.Mvc.ControllerContext)">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.ValueProviderDictionary"/> class.
+ </summary>
+ <param name="controllerContext">The controller context.</param>
+ </member>
+ <member name="M:System.Web.Mvc.ValueProviderDictionary.Add(System.Collections.Generic.KeyValuePair{System.String,System.Web.Mvc.ValueProviderResult})">
+ <summary>
+ Adds an item to the <see cref="T:System.Collections.Generic.ICollection`1"/>.
+ </summary>
+ <param name="item">The object to add to the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param>
+ <exception cref="T:System.NotSupportedException">
+ The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only.
+ </exception>
+ </member>
+ <member name="M:System.Web.Mvc.ValueProviderDictionary.Add(System.String,System.Web.Mvc.ValueProviderResult)">
+ <summary>
+ Adds an element with the provided key and value to the <see cref="T:System.Collections.Generic.IDictionary`2"/>.
+ </summary>
+ <param name="key">The object to use as the key of the element to add.</param>
+ <param name="value">The object to use as the value of the element to add.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="key"/> is null.
+ </exception>
+ <exception cref="T:System.ArgumentException">
+ An element with the same key already exists in the <see cref="T:System.Collections.Generic.IDictionary`2"/>.
+ </exception>
+ <exception cref="T:System.NotSupportedException">
+ The <see cref="T:System.Collections.Generic.IDictionary`2"/> is read-only.
+ </exception>
+ </member>
+ <member name="M:System.Web.Mvc.ValueProviderDictionary.AddToDictionaryIfNotPresent(System.String,System.Web.Mvc.ValueProviderResult)">
+ <summary>
+ Adds a key/value pair to the dictionary if it is not already present.
+ </summary>
+ <param name="key">The key.</param>
+ <param name="result">The result.</param>
+ </member>
+ <member name="M:System.Web.Mvc.ValueProviderDictionary.Clear">
+ <summary>
+ Removes all items from the <see cref="T:System.Collections.Generic.ICollection`1"/>.
+ </summary>
+ <exception cref="T:System.NotSupportedException">
+ The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only.
+ </exception>
+ </member>
+ <member name="M:System.Web.Mvc.ValueProviderDictionary.Contains(System.Collections.Generic.KeyValuePair{System.String,System.Web.Mvc.ValueProviderResult})">
+ <summary>
+ Determines whether the <see cref="T:System.Collections.Generic.ICollection`1"/> contains a specific value.
+ </summary>
+ <param name="item">The object to locate in the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param>
+ <returns>
+ true if <paramref name="item"/> is found in the <see cref="T:System.Collections.Generic.ICollection`1"/>; otherwise, false.
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.ValueProviderDictionary.ContainsKey(System.String)">
+ <summary>
+ Determines whether the <see cref="T:System.Collections.Generic.IDictionary`2"/> contains an element with the specified key.
+ </summary>
+ <param name="key">The key to locate in the <see cref="T:System.Collections.Generic.IDictionary`2"/>.</param>
+ <returns>
+ true if the <see cref="T:System.Collections.Generic.IDictionary`2"/> contains an element with the key; otherwise, false.
+ </returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="key"/> is null.
+ </exception>
+ </member>
+ <member name="M:System.Web.Mvc.ValueProviderDictionary.CopyTo(System.Collections.Generic.KeyValuePair{System.String,System.Web.Mvc.ValueProviderResult}[],System.Int32)">
+ <summary>
+ Copies the elements of the <see cref="T:System.Collections.Generic.ICollection`1"/> to an <see cref="T:System.Array"/>, starting at a particular <see cref="T:System.Array"/> index.
+ </summary>
+ <param name="array">The one-dimensional <see cref="T:System.Array"/> that is the destination of the elements copied from <see cref="T:System.Collections.Generic.ICollection`1"/>. The <see cref="T:System.Array"/> must have zero-based indexing.</param>
+ <param name="arrayIndex">The zero-based index in <paramref name="array"/> at which copying begins.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="array"/> is null.
+ </exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="arrayIndex"/> is less than 0.
+ </exception>
+ <exception cref="T:System.ArgumentException">
+ <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"/> 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>
+ </member>
+ <member name="M:System.Web.Mvc.ValueProviderDictionary.GetEnumerator">
+ <summary>
+ Returns an enumerator that iterates through the collection.
+ </summary>
+ <returns>
+ A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection.
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.ValueProviderDictionary.Remove(System.Collections.Generic.KeyValuePair{System.String,System.Web.Mvc.ValueProviderResult})">
+ <summary>
+ Removes the first occurrence of a specific object from the <see cref="T:System.Collections.Generic.ICollection`1"/>.
+ </summary>
+ <param name="item">The object to remove from the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param>
+ <returns>
+ true if <paramref name="item"/> was successfully removed from the <see cref="T:System.Collections.Generic.ICollection`1"/>; otherwise, false. This method also returns false if <paramref name="item"/> is not found in the original <see cref="T:System.Collections.Generic.ICollection`1"/>.
+ </returns>
+ <exception cref="T:System.NotSupportedException">
+ The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only.
+ </exception>
+ </member>
+ <member name="M:System.Web.Mvc.ValueProviderDictionary.Remove(System.String)">
+ <summary>
+ Removes the element with the specified key from the <see cref="T:System.Collections.Generic.IDictionary`2"/>.
+ </summary>
+ <param name="key">The key of the element to remove.</param>
+ <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 <see cref="T:System.Collections.Generic.IDictionary`2"/>.
+ </returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="key"/> is null.
+ </exception>
+ <exception cref="T:System.NotSupportedException">
+ The <see cref="T:System.Collections.Generic.IDictionary`2"/> is read-only.
+ </exception>
+ </member>
+ <member name="M:System.Web.Mvc.ValueProviderDictionary.TryGetValue(System.String,System.Web.Mvc.ValueProviderResult@)">
+ <summary>
+ Gets the value associated with the specified key.
+ </summary>
+ <param name="key">The key whose value to get.</param>
+ <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>
+ <returns>
+ true if the object that implements <see cref="T:System.Collections.Generic.IDictionary`2"/> contains an element with the specified key; otherwise, false.
+ </returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="key"/> is null.
+ </exception>
+ </member>
+ <member name="M:System.Web.Mvc.ValueProviderDictionary.System#Collections#IEnumerable#GetEnumerator">
+ <summary>
+ Returns an enumerator that iterates through a collection.
+ </summary>
+ <returns>
+ An <see cref="T:System.Collections.IEnumerator"/> object that can be used to iterate through the collection.
+ </returns>
+ </member>
+ <member name="P:System.Web.Mvc.ValueProviderDictionary.ControllerContext">
+ <summary>
+ Gets the controller context.
+ </summary>
+ <value>The controller context.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ValueProviderDictionary.Count">
+ <summary>
+ Gets the number of elements contained in the <see cref="T:System.Collections.Generic.ICollection`1"/>.
+ </summary>
+ <value></value>
+ <returns>
+ The number of elements contained in the <see cref="T:System.Collections.Generic.ICollection`1"/>.
+ </returns>
+ </member>
+ <member name="P:System.Web.Mvc.ValueProviderDictionary.Dictionary">
+ <summary>
+ Gets the dictionary.
+ </summary>
+ <value>The dictionary.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ValueProviderDictionary.IsReadOnly">
+ <summary>
+ Gets a value indicating whether the <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only.
+ </summary>
+ <value></value>
+ <returns>true if the <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only; otherwise, false.
+ </returns>
+ </member>
+ <member name="P:System.Web.Mvc.ValueProviderDictionary.Keys">
+ <summary>
+ Gets an <see cref="T:System.Collections.Generic.ICollection`1"/> containing the keys of the <see cref="T:System.Collections.Generic.IDictionary`2"/>.
+ </summary>
+ <value></value>
+ <returns>
+ An <see cref="T:System.Collections.Generic.ICollection`1"/> containing the keys of the object that implements <see cref="T:System.Collections.Generic.IDictionary`2"/>.
+ </returns>
+ </member>
+ <member name="P:System.Web.Mvc.ValueProviderDictionary.Item(System.String)">
+ <summary>
+ Gets or sets the <see cref="T:System.Web.Mvc.ValueProviderResult"/> with the specified key.
+ </summary>
+ <value></value>
+ </member>
+ <member name="P:System.Web.Mvc.ValueProviderDictionary.Values">
+ <summary>
+ Gets an <see cref="T:System.Collections.Generic.ICollection`1"/> containing the values in the <see cref="T:System.Collections.Generic.IDictionary`2"/>.
+ </summary>
+ <value></value>
+ <returns>
+ An <see cref="T:System.Collections.Generic.ICollection`1"/> containing the values in the object that implements <see cref="T:System.Collections.Generic.IDictionary`2"/>.
+ </returns>
+ </member>
+ <member name="T:System.Web.Mvc.Resources.MvcResources">
+ <summary>
+ A strongly-typed resource class, for looking up localized strings, etc.
+ </summary>
+ </member>
+ <member name="P:System.Web.Mvc.Resources.MvcResources.ResourceManager">
+ <summary>
+ Returns the cached ResourceManager instance used by this class.
+ </summary>
+ </member>
+ <member name="P:System.Web.Mvc.Resources.MvcResources.Culture">
+ <summary>
+ Overrides the current thread's CurrentUICulture property for all
+ resource lookups using this strongly typed resource class.
+ </summary>
+ </member>
+ <member name="P:System.Web.Mvc.Resources.MvcResources.ActionMethodSelector_AmbiguousMatch">
+ <summary>
+ Looks up a localized string similar to The current request for action '{0}' on controller type '{1}' is ambiguous between the following action methods:{2}.
+ </summary>
+ </member>
+ <member name="P:System.Web.Mvc.Resources.MvcResources.ActionMethodSelector_AmbiguousMatchType">
+ <summary>
+ Looks up a localized string similar to {0} on type {1}.
+ </summary>
+ </member>
+ <member name="P:System.Web.Mvc.Resources.MvcResources.ActionRedirectResult_NoRouteMatched">
+ <summary>
+ Looks up a localized string similar to No route in the route table matches the supplied values.
+ </summary>
+ </member>
+ <member name="P:System.Web.Mvc.Resources.MvcResources.AntiForgeryToken_ValidationFailed">
+ <summary>
+ Looks up a localized string similar to A required anti-forgery token was not supplied or was invalid.
+ </summary>
+ </member>
+ <member name="P:System.Web.Mvc.Resources.MvcResources.Common_InvalidEnumValue">
+ <summary>
+ Looks up a localized string similar to The value '{0}' is outside the valid range of the enumeration type '{1}'.
+ </summary>
+ </member>
+ <member name="P:System.Web.Mvc.Resources.MvcResources.Common_NullOrEmpty">
+ <summary>
+ Looks up a localized string similar to Value cannot be null or empty.
+ </summary>
+ </member>
+ <member name="P:System.Web.Mvc.Resources.MvcResources.Common_PartialViewNotFound">
+ <summary>
+ Looks up a localized string similar to The partial view '{0}' could not be found. The following locations were searched:{1}.
+ </summary>
+ </member>
+ <member name="P:System.Web.Mvc.Resources.MvcResources.Common_PropertyCannotBeNullOrEmpty">
+ <summary>
+ Looks up a localized string similar to The property '{0}' cannot be null or empty.
+ </summary>
+ </member>
+ <member name="P:System.Web.Mvc.Resources.MvcResources.Common_ValueNotValidForProperty">
+ <summary>
+ Looks up a localized string similar to The value '{0}' is invalid.
+ </summary>
+ </member>
+ <member name="P:System.Web.Mvc.Resources.MvcResources.Common_ViewNotFound">
+ <summary>
+ Looks up a localized string similar to The view '{0}' or its master could not be found. The following locations were searched:{1}.
+ </summary>
+ </member>
+ <member name="P:System.Web.Mvc.Resources.MvcResources.Controller_UnknownAction">
+ <summary>
+ Looks up a localized string similar to A public action method '{0}' could not be found on controller '{1}'.
+ </summary>
+ </member>
+ <member name="P:System.Web.Mvc.Resources.MvcResources.Controller_UpdateModel_UpdateUnsuccessful">
+ <summary>
+ Looks up a localized string similar to The model of type '{0}' was not successfully updated.
+ </summary>
+ </member>
+ <member name="P:System.Web.Mvc.Resources.MvcResources.ControllerBuilder_ErrorCreatingControllerFactory">
+ <summary>
+ Looks up a localized string similar to There was an error creating the IControllerFactory '{0}'. Check that it has a public parameterless constructor.
+ </summary>
+ </member>
+ <member name="P:System.Web.Mvc.Resources.MvcResources.ControllerBuilder_FactoryReturnedNull">
+ <summary>
+ Looks up a localized string similar to The IControllerFactory '{0}' did not return a controller for a controller named '{1}'.
+ </summary>
+ </member>
+ <member name="P:System.Web.Mvc.Resources.MvcResources.ControllerBuilder_MissingIControllerFactory">
+ <summary>
+ Looks up a localized string similar to The controller factory type '{0}' must implement the IControllerFactory interface.
+ </summary>
+ </member>
+ <member name="P:System.Web.Mvc.Resources.MvcResources.DefaultControllerFactory_ControllerNameAmbiguous">
+ <summary>
+ Looks up a localized string similar to The controller name '{0}' is ambiguous between the following types:{1}.
+ </summary>
+ </member>
+ <member name="P:System.Web.Mvc.Resources.MvcResources.DefaultControllerFactory_ErrorCreatingController">
+ <summary>
+ Looks up a localized string similar to An error occurred while creating a controller of type '{0}'. If the controller doesn't have a controller factory, ensure that it has a parameterless public constructor.
+ </summary>
+ </member>
+ <member name="P:System.Web.Mvc.Resources.MvcResources.DefaultControllerFactory_NoControllerFound">
+ <summary>
+ Looks up a localized string similar to The controller for path '{0}' could not be found or it does not implement IController.
+ </summary>
+ </member>
+ <member name="P:System.Web.Mvc.Resources.MvcResources.DefaultControllerFactory_TypeDoesNotSubclassControllerBase">
+ <summary>
+ Looks up a localized string similar to The controller type '{0}' must implement IController.
+ </summary>
+ </member>
+ <member name="P:System.Web.Mvc.Resources.MvcResources.DefaultModelBinder_ValueRequired">
+ <summary>
+ Looks up a localized string similar to A value is required.
+ </summary>
+ </member>
+ <member name="P:System.Web.Mvc.Resources.MvcResources.DefaultViewLocationCache_NegativeTimeSpan">
+ <summary>
+ Looks up a localized string similar to The total number of ticks for the TimeSpan must be greater than 0.
+ </summary>
+ </member>
+ <member name="P:System.Web.Mvc.Resources.MvcResources.ExceptionViewAttribute_NonExceptionType">
+ <summary>
+ Looks up a localized string similar to The type '{0}' does not inherit from Exception.
+ </summary>
+ </member>
+ <member name="P:System.Web.Mvc.Resources.MvcResources.FilterAttribute_OrderOutOfRange">
+ <summary>
+ Looks up a localized string similar to Order must be greater than or equal to -1.
+ </summary>
+ </member>
+ <member name="P:System.Web.Mvc.Resources.MvcResources.HtmlHelper_MissingSelectData">
+ <summary>
+ Looks up a localized string similar to There is no ViewData item with the key '{0}' of type '{1}'.
+ </summary>
+ </member>
+ <member name="P:System.Web.Mvc.Resources.MvcResources.HtmlHelper_TextAreaParameterOutOfRange">
+ <summary>
+ Looks up a localized string similar to The value must be greater than or equal to zero.
+ </summary>
+ </member>
+ <member name="P:System.Web.Mvc.Resources.MvcResources.HtmlHelper_WrongSelectDataType">
+ <summary>
+ Looks up a localized string similar to The ViewData item with the key '{0}' is of type '{1}' but needs to be of type '{2}'.
+ </summary>
+ </member>
+ <member name="P:System.Web.Mvc.Resources.MvcResources.ModelBinderAttribute_ErrorCreatingModelBinder">
+ <summary>
+ Looks up a localized string similar to There was an error creating the IModelBinder '{0}'. Check that it has a public parameterless constructor.
+ </summary>
+ </member>
+ <member name="P:System.Web.Mvc.Resources.MvcResources.ModelBinderAttribute_TypeNotIModelBinder">
+ <summary>
+ Looks up a localized string similar to The type '{0}' does not implement the IModelBinder interface.
+ </summary>
+ </member>
+ <member name="P:System.Web.Mvc.Resources.MvcResources.ModelBinderDictionary_MultipleAttributes">
+ <summary>
+ Looks up a localized string similar to The type '{0}' contains multiple attributes inheriting from CustomModelBinderAttribute.
+ </summary>
+ </member>
+ <member name="P:System.Web.Mvc.Resources.MvcResources.ReflectedActionDescriptor_CannotCallInstanceMethodOnNonControllerType">
+ <summary>
+ Looks up a localized string similar to Cannot create a descriptor for instance method '{0}' on type '{1}' since the type does not subclass ControllerBase.
+ </summary>
+ </member>
+ <member name="P:System.Web.Mvc.Resources.MvcResources.ReflectedActionDescriptor_CannotCallMethodsWithOutOrRefParameters">
+ <summary>
+ Looks up a localized string similar to Cannot call action method '{0}' on controller '{1}' since the parameter '{2}' is passed by reference.
+ </summary>
+ </member>
+ <member name="P:System.Web.Mvc.Resources.MvcResources.ReflectedActionDescriptor_CannotCallOpenGenericMethods">
+ <summary>
+ Looks up a localized string similar to Cannot call action method '{0}' on controller '{1}' since it is a generic method.
+ </summary>
+ </member>
+ <member name="P:System.Web.Mvc.Resources.MvcResources.ReflectedActionDescriptor_ParameterCannotBeNull">
+ <summary>
+ Looks up a localized string similar to The parameters dictionary contains a null entry for parameter '{0}' of non-nullable type '{1}' for method '{2}' in '{3}'. To make a parameter optional its type should be either a reference type or a Nullable type.
+ </summary>
+ </member>
+ <member name="P:System.Web.Mvc.Resources.MvcResources.ReflectedActionDescriptor_ParameterNotInDictionary">
+ <summary>
+ Looks up a localized string similar to The parameters dictionary does not contain an entry for parameter '{0}' of type '{1}' for method '{2}' in '{3}'. The dictionary must contain an entry for each parameter, even parameters with null values.
+ </summary>
+ </member>
+ <member name="P:System.Web.Mvc.Resources.MvcResources.ReflectedActionDescriptor_ParameterValueHasWrongType">
+ <summary>
+ Looks up a localized string similar to The parameters dictionary contains an invalid entry for parameter '{0}' for method '{1}' in '{2}'. The dictionary contains a value of type '{3}', but the parameter requires a value of type '{4}'.
+ </summary>
+ </member>
+ <member name="P:System.Web.Mvc.Resources.MvcResources.ReflectedParameterBindingInfo_MultipleConverterAttributes">
+ <summary>
+ Looks up a localized string similar to The parameter '{0}' on method '{1}' contains multiple attributes inheriting from CustomModelBinderAttribute.
+ </summary>
+ </member>
+ <member name="P:System.Web.Mvc.Resources.MvcResources.SessionStateTempDataProvider_SessionStateDisabled">
+ <summary>
+ Looks up a localized string similar to The SessionStateTempDataProvider requires SessionState to be enabled.
+ </summary>
+ </member>
+ <member name="P:System.Web.Mvc.Resources.MvcResources.ValueProviderResult_ConversionThrew">
+ <summary>
+ Looks up a localized string similar to The parameter conversion from type '{0}' to type '{1}' failed. See the inner exception for more information.
+ </summary>
+ </member>
+ <member name="P:System.Web.Mvc.Resources.MvcResources.ValueProviderResult_NoConverterExists">
+ <summary>
+ Looks up a localized string similar to The parameter conversion from type '{0}' to type '{1}' failed because no TypeConverter can convert between these types.
+ </summary>
+ </member>
+ <member name="P:System.Web.Mvc.Resources.MvcResources.ViewDataDictionary_WrongTModelType">
+ <summary>
+ Looks up a localized string similar to The model item passed into the dictionary is of type '{0}' but this dictionary requires a model item of type '{1}'.
+ </summary>
+ </member>
+ <member name="P:System.Web.Mvc.Resources.MvcResources.ViewMasterPage_RequiresViewPage">
+ <summary>
+ Looks up a localized string similar to A ViewMasterPage can only be used with content pages that derive from ViewPage or ViewPage<TViewItem>.
+ </summary>
+ </member>
+ <member name="P:System.Web.Mvc.Resources.MvcResources.ViewUserControl_RequiresViewDataProvider">
+ <summary>
+ Looks up a localized string similar to The ViewUserControl '{0}' cannot find an IViewDataContainer. The ViewUserControl must be inside a ViewPage, ViewMasterPage, or another ViewUserControl.
+ </summary>
+ </member>
+ <member name="P:System.Web.Mvc.Resources.MvcResources.ViewUserControl_RequiresViewPage">
+ <summary>
+ Looks up a localized string similar to A ViewUserControl can only be used inside pages that derive from ViewPage or ViewPage<TViewItem>.
+ </summary>
+ </member>
+ <member name="P:System.Web.Mvc.Resources.MvcResources.WebFormViewEngine_UserControlCannotHaveMaster">
+ <summary>
+ Looks up a localized string similar to A master name cannot be specified when the view is a ViewUserControl.
+ </summary>
+ </member>
+ <member name="P:System.Web.Mvc.Resources.MvcResources.WebFormViewEngine_ViewCouldNotBeCreated">
+ <summary>
+ Looks up a localized string similar to The view found at '{0}' could not be created.
+ </summary>
+ </member>
+ <member name="P:System.Web.Mvc.Resources.MvcResources.WebFormViewEngine_WrongViewBase">
+ <summary>
+ Looks up a localized string similar to The view at '{0}' must derive from ViewPage, ViewPage<TViewData>, ViewUserControl, or ViewUserControl<TViewData>.
+ </summary>
+ </member>
+ <member name="T:System.Web.Mvc.HttpUnauthorizedResult">
+ <summary>
+ Represents the result of an unauthorized HTTP request.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.HttpUnauthorizedResult.ExecuteResult(System.Web.Mvc.ControllerContext)">
+ <summary>
+ Enables processing of the result of an action method by a custom type that inherits from <see cref="T:System.Web.Mvc.ActionResult"/>.
+ </summary>
+ <param name="context">The context within which the result is executed.</param>
+ </member>
+ <member name="T:System.Web.Mvc.HttpVerbs">
+ <summary>
+ Enumerates the HTTP verbs.
+ </summary>
+ </member>
+ <member name="F:System.Web.Mvc.HttpVerbs.Get">
+ <summary>
+ The GET method retrieves the information or entity that is identified by the URI of the Request.
+ </summary>
+ </member>
+ <member name="F:System.Web.Mvc.HttpVerbs.Post">
+ <summary>
+ The POST method is used to post a new entity as an addition to a URI.
+ </summary>
+ </member>
+ <member name="F:System.Web.Mvc.HttpVerbs.Put">
+ <summary>
+ The PUT method is used to replace an entity identified by a URI.
+ </summary>
+ </member>
+ <member name="F:System.Web.Mvc.HttpVerbs.Delete">
+ <summary>
+ The DELETE method requests that a specified URI be deleted.
+ </summary>
+ </member>
+ <member name="F:System.Web.Mvc.HttpVerbs.Head">
+ <summary>
+ The HEAD method is identical to GET except that the server only returns message-headers in the response, without a message-body.
+ </summary>
+ </member>
+ <member name="T:System.Web.Mvc.ActionSelector">
+ <summary>
+ Delegate that contains the logic for selecting a action method.
+ </summary>
+ </member>
+ <member name="T:System.Web.Mvc.AjaxRequestExtensions">
+ <summary>
+ Adds the ability to determine if a specified HTTP request is an AJAX request.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.AjaxRequestExtensions.IsAjaxRequest(System.Web.HttpRequestBase)">
+ <summary>
+ Determines whether the specified HTTP request is an AJAX request.
+ </summary>
+ <param name="request">The request.</param>
+ <returns>
+ <c>true</c> if the specified HTTP request is an AJAX request; otherwise, <c>false</c>.
+ </returns>
+ </member>
+ <member name="T:System.Web.Mvc.ExceptionContext">
+ <summary>
+ Provides the context for using the <see cref="T:System.Web.Mvc.HandleErrorAttribute"/> class.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.ExceptionContext.#ctor">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.ExceptionContext"/> class.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.ExceptionContext.#ctor(System.Web.Mvc.ControllerContext,System.Exception)">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.ExceptionContext"/> class.
+ </summary>
+ <param name="controllerContext">The controller context.</param>
+ <param name="exception">The exception.</param>
+ </member>
+ <member name="P:System.Web.Mvc.ExceptionContext.Exception">
+ <summary>
+ Gets or sets the exception.
+ </summary>
+ <value>The exception.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ExceptionContext.ExceptionHandled">
+ <summary>
+ Gets or sets a value indicating whether has been exception handled.
+ </summary>
+ <value><c>true</c> if has been exception handled; otherwise, <c>false</c>.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ExceptionContext.Result">
+ <summary>
+ Gets or sets the result.
+ </summary>
+ <value>The result.</value>
+ </member>
+ <member name="T:System.Web.Mvc.ViewMasterPage`1">
+ <summary>
+ Represents the information needed to build a strongly typed master view page.
+ </summary>
+ <typeparam name="TModel">The type of the model.</typeparam>
+ </member>
+ <member name="P:System.Web.Mvc.ViewMasterPage`1.Ajax">
+ <summary>
+ Gets the ajax.
+ </summary>
+ <value>The ajax.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ViewMasterPage`1.Html">
+ <summary>
+ Gets the HTML.
+ </summary>
+ <value>The HTML.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ViewMasterPage`1.Model">
+ <summary>
+ Gets the model.
+ </summary>
+ <value>The model.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ViewMasterPage`1.ViewData">
+ <summary>
+ Gets the view data.
+ </summary>
+ <value>The view data.</value>
+ </member>
+ <member name="T:System.Web.Mvc.DefaultViewLocationCache">
+ <summary>
+ Represents a memory cache for view locations.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.DefaultViewLocationCache.#ctor">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.DefaultViewLocationCache"/> class.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.DefaultViewLocationCache.#ctor(System.TimeSpan)">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.DefaultViewLocationCache"/> class.
+ </summary>
+ <param name="timeSpan">The time span.</param>
+ </member>
+ <member name="F:System.Web.Mvc.DefaultViewLocationCache.Null">
+ <summary>
+ Creates an empty view location cache.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.DefaultViewLocationCache.GetViewLocation(System.Web.HttpContextBase,System.String)">
+ <summary>
+ Gets the view location.
+ </summary>
+ <param name="httpContext">The HTTP context.</param>
+ <param name="key">The key.</param>
+ <returns>The view location.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.DefaultViewLocationCache.InsertViewLocation(System.Web.HttpContextBase,System.String,System.String)">
+ <summary>
+ Inserts the view location.
+ </summary>
+ <param name="httpContext">The HTTP context.</param>
+ <param name="key">The key.</param>
+ <param name="virtualPath">The virtual path.</param>
+ </member>
+ <member name="P:System.Web.Mvc.DefaultViewLocationCache.TimeSpan">
+ <summary>
+ Gets the time span.
+ </summary>
+ <value>The time span.</value>
+ </member>
+ <member name="T:System.Web.Mvc.Ajax.AjaxOptions">
+ <summary>
+ Represents option settings running AJAX scripts in an MVC application.
+ </summary>
+ </member>
+ <member name="P:System.Web.Mvc.Ajax.AjaxOptions.Confirm">
+ <summary>
+ Gets or sets the junction to call for a confirmation.
+ </summary>
+ <value>The the junction to call for a confirmation.</value>
+ </member>
+ <member name="P:System.Web.Mvc.Ajax.AjaxOptions.HttpMethod">
+ <summary>
+ Gets or sets the HTTP method.
+ </summary>
+ <value>The HTTP method.</value>
+ </member>
+ <member name="P:System.Web.Mvc.Ajax.AjaxOptions.InsertionMode">
+ <summary>
+ Gets or sets the insertion mode.
+ </summary>
+ <value>The insertion mode.</value>
+ </member>
+ <member name="P:System.Web.Mvc.Ajax.AjaxOptions.LoadingElementId">
+ <summary>
+ Gets or sets the loading element id.
+ </summary>
+ <value>The loading element id.</value>
+ </member>
+ <member name="P:System.Web.Mvc.Ajax.AjaxOptions.OnBegin">
+ <summary>
+ Gets or sets the function to call on begin.
+ </summary>
+ <value>The function to call on begin.</value>
+ </member>
+ <member name="P:System.Web.Mvc.Ajax.AjaxOptions.OnComplete">
+ <summary>
+ Gets or sets the function to call on complete.
+ </summary>
+ <value>The function to call on complete.</value>
+ </member>
+ <member name="P:System.Web.Mvc.Ajax.AjaxOptions.OnFailure">
+ <summary>
+ Gets or sets the function to call on failure.
+ </summary>
+ <value>The function to call on failure.</value>
+ </member>
+ <member name="P:System.Web.Mvc.Ajax.AjaxOptions.OnSuccess">
+ <summary>
+ Gets or sets the function to call on success.
+ </summary>
+ <value>The function to call on success.</value>
+ </member>
+ <member name="P:System.Web.Mvc.Ajax.AjaxOptions.UpdateTargetId">
+ <summary>
+ Gets or sets the update target id.
+ </summary>
+ <value>The update target id.</value>
+ </member>
+ <member name="P:System.Web.Mvc.Ajax.AjaxOptions.Url">
+ <summary>
+ Gets or sets the URL.
+ </summary>
+ <value>The URL.</value>
+ </member>
+ <member name="T:System.Web.Mvc.ActionMethodDispatcher">
+ <summary>
+ Responsible for executing a specified action method.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.ActionMethodDispatcher.#ctor(System.Reflection.MethodInfo)">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.ActionMethodDispatcher"/> class.
+ </summary>
+ <param name="methodInfo">The method info.</param>
+ </member>
+ <member name="M:System.Web.Mvc.ActionMethodDispatcher.Execute(System.Web.Mvc.ControllerBase,System.Object[])">
+ <summary>
+ Executes the specified action method.
+ </summary>
+ <param name="controller">The controller.</param>
+ <param name="parameters">The parameters.</param>
+ <returns>The result.</returns>
+ </member>
+ <member name="P:System.Web.Mvc.ActionMethodDispatcher.MethodInfo">
+ <summary>
+ Gets the method information.
+ </summary>
+ <value>The method information.</value>
+ </member>
+ <member name="T:System.Web.Mvc.ResultExecutedContext">
+ <summary>
+ Provides the context for the ResultExecuted method of an <see cref="T:System.Web.Mvc.ActionFilterAttribute"/>.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.ResultExecutedContext.#ctor">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.ResultExecutedContext"/> class.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.ResultExecutedContext.#ctor(System.Web.Mvc.ControllerContext,System.Web.Mvc.ActionResult,System.Boolean,System.Exception)">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.ResultExecutedContext"/> class.
+ </summary>
+ <param name="controllerContext">The controller context.</param>
+ <param name="result">The result.</param>
+ <param name="canceled">if set to <c>true</c> [canceled].</param>
+ <param name="exception">The exception.</param>
+ </member>
+ <member name="P:System.Web.Mvc.ResultExecutedContext.Canceled">
+ <summary>
+ Gets or sets a value indicating whether this <see cref="T:System.Web.Mvc.ResultExecutedContext"/> is canceled.
+ </summary>
+ <value><c>true</c> if canceled; otherwise, <c>false</c>.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ResultExecutedContext.Exception">
+ <summary>
+ Gets or sets the exception.
+ </summary>
+ <value>The exception.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ResultExecutedContext.ExceptionHandled">
+ <summary>
+ Gets or sets a value indicating whether [exception handled].
+ </summary>
+ <value><c>true</c> if [exception handled]; otherwise, <c>false</c>.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ResultExecutedContext.Result">
+ <summary>
+ Gets or sets the action result.
+ </summary>
+ <value>The action result.</value>
+ </member>
+ <member name="T:System.Web.Mvc.ControllerActionInvoker">
+ <summary>
+ Responsible for invoking the action methods of a controller.
+ </summary>
+ </member>
+ <member name="T:System.Web.Mvc.IActionInvoker">
+ <summary>
+ Defines the contract for an action invoker, used to invoke an action in response to an HTTP request.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.IActionInvoker.InvokeAction(System.Web.Mvc.ControllerContext,System.String)">
+ <summary>
+ Invokes the specified action.
+ </summary>
+ <param name="controllerContext">The controller context.</param>
+ <param name="actionName">The name of the action.</param>
+ <returns>
+ <c>true</c> if the action was found, otherwise <c>false</c>.
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.ControllerActionInvoker.CreateActionResult(System.Web.Mvc.ControllerContext,System.Web.Mvc.ActionDescriptor,System.Object)">
+ <summary>
+ Creates the action result.
+ </summary>
+ <param name="controllerContext">The controller context.</param>
+ <param name="actionDescriptor">The action descriptor.</param>
+ <param name="actionReturnValue">The action return value.</param>
+ <returns>The action result object.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.ControllerActionInvoker.GetControllerDescriptor(System.Web.Mvc.ControllerContext)">
+ <summary>
+ Gets the controller descriptor.
+ </summary>
+ <param name="controllerContext">The controller context.</param>
+ <returns>The controller descriptor.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.ControllerActionInvoker.FindAction(System.Web.Mvc.ControllerContext,System.Web.Mvc.ControllerDescriptor,System.String)">
+ <summary>
+ Finds the action descriptor.
+ </summary>
+ <param name="controllerContext">The controller context.</param>
+ <param name="controllerDescriptor">The controller descriptor.</param>
+ <param name="actionName">The name of the action.</param>
+ <returns>The action descriptor object.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.ControllerActionInvoker.GetFilters(System.Web.Mvc.ControllerContext,System.Web.Mvc.ActionDescriptor)">
+ <summary>
+ Gets the filters.
+ </summary>
+ <param name="controllerContext">The controller context.</param>
+ <param name="actionDescriptor">The action descriptor.</param>
+ <returns>The filter information object.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.ControllerActionInvoker.GetParameterValue(System.Web.Mvc.ControllerContext,System.Web.Mvc.ParameterDescriptor)">
+ <summary>
+ Gets the parameter value.
+ </summary>
+ <param name="controllerContext">The controller context.</param>
+ <param name="parameterDescriptor">The parameter descriptor.</param>
+ <returns>The parameter value.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.ControllerActionInvoker.GetParameterValues(System.Web.Mvc.ControllerContext,System.Web.Mvc.ActionDescriptor)">
+ <summary>
+ Gets the parameter values.
+ </summary>
+ <param name="controllerContext">The controller context.</param>
+ <param name="actionDescriptor">The action descriptor.</param>
+ <returns>The parameter values.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.ControllerActionInvoker.InvokeAction(System.Web.Mvc.ControllerContext,System.String)">
+ <summary>
+ Invokes the specified action.
+ </summary>
+ <param name="controllerContext">The controller context.</param>
+ <param name="actionName">The name of the action.</param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Web.Mvc.ControllerActionInvoker.InvokeActionMethod(System.Web.Mvc.ControllerContext,System.Web.Mvc.ActionDescriptor,System.Collections.Generic.IDictionary{System.String,System.Object})">
+ <summary>
+ Invokes the action method.
+ </summary>
+ <param name="controllerContext">The controller context.</param>
+ <param name="actionDescriptor">The action descriptor.</param>
+ <param name="parameters">The parameters.</param>
+ <returns>The result of the executing the action method.</returns>
+ </member>
+ <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})">
+ <summary>
+ Invokes the action method with filters.
+ </summary>
+ <param name="controllerContext">The controller context.</param>
+ <param name="filters">The filters.</param>
+ <param name="actionDescriptor">The action descriptor.</param>
+ <param name="parameters">The parameters.</param>
+ <returns>The the context for the ActionExecuted method of an <see cref="T:System.Web.Mvc.ActionFilterAttribute"/>.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.ControllerActionInvoker.InvokeActionResult(System.Web.Mvc.ControllerContext,System.Web.Mvc.ActionResult)">
+ <summary>
+ Invokes the action result.
+ </summary>
+ <param name="controllerContext">The controller context.</param>
+ <param name="actionResult">The action result.</param>
+ </member>
+ <member name="M:System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters(System.Web.Mvc.ControllerContext,System.Collections.Generic.IList{System.Web.Mvc.IResultFilter},System.Web.Mvc.ActionResult)">
+ <summary>
+ Invokes the action result with filters.
+ </summary>
+ <param name="controllerContext">The controller context.</param>
+ <param name="filters">The filters.</param>
+ <param name="actionResult">The action result.</param>
+ <returns>The the context for the ResultExecuted method of an <see cref="T:System.Web.Mvc.ActionFilterAttribute"/>.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.ControllerActionInvoker.InvokeAuthorizationFilters(System.Web.Mvc.ControllerContext,System.Collections.Generic.IList{System.Web.Mvc.IAuthorizationFilter},System.Web.Mvc.ActionDescriptor)">
+ <summary>
+ Invokes the authorization filters.
+ </summary>
+ <param name="controllerContext">The controller context.</param>
+ <param name="filters">The filters.</param>
+ <param name="actionDescriptor">The action descriptor.</param>
+ <returns>The context for an <see cref="T:System.Web.Mvc.AuthorizeAttribute"/>.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.ControllerActionInvoker.InvokeExceptionFilters(System.Web.Mvc.ControllerContext,System.Collections.Generic.IList{System.Web.Mvc.IExceptionFilter},System.Exception)">
+ <summary>
+ Invokes the exception filters.
+ </summary>
+ <param name="controllerContext">The controller context.</param>
+ <param name="filters">The filters.</param>
+ <param name="exception">The exception.</param>
+ <returns>The context for an <see cref="T:System.Web.Mvc.HandleErrorAttribute"/>.</returns>
+ </member>
+ <member name="P:System.Web.Mvc.ControllerActionInvoker.Binders">
+ <summary>
+ Gets or sets the model binders.
+ </summary>
+ <value>The model binders.</value>
+ </member>
+ <member name="T:System.Web.Mvc.ModelError">
+ <summary>
+ Represents an error in model binding.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.ModelError.#ctor(System.Exception)">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.ModelError"/> class.
+ </summary>
+ <param name="exception">The exception.</param>
+ </member>
+ <member name="M:System.Web.Mvc.ModelError.#ctor(System.Exception,System.String)">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.ModelError"/> class.
+ </summary>
+ <param name="exception">The exception.</param>
+ <param name="errorMessage">The error message.</param>
+ </member>
+ <member name="M:System.Web.Mvc.ModelError.#ctor(System.String)">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.ModelError"/> class.
+ </summary>
+ <param name="errorMessage">The error message.</param>
+ </member>
+ <member name="P:System.Web.Mvc.ModelError.Exception">
+ <summary>
+ Gets the exception.
+ </summary>
+ <value>The exception.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ModelError.ErrorMessage">
+ <summary>
+ Gets the error message.
+ </summary>
+ <value>The error message.</value>
+ </member>
+ <member name="T:System.Web.Mvc.TagRenderMode">
+ <summary>
+ Enumerates the modes available for rendering HTML tags.
+ </summary>
+ </member>
+ <member name="F:System.Web.Mvc.TagRenderMode.Normal">
+ <summary>
+ Normal mode.
+ </summary>
+ </member>
+ <member name="F:System.Web.Mvc.TagRenderMode.StartTag">
+ <summary>
+ Start tag mode.
+ </summary>
+ </member>
+ <member name="F:System.Web.Mvc.TagRenderMode.EndTag">
+ <summary>
+ End tag mode.
+ </summary>
+ </member>
+ <member name="F:System.Web.Mvc.TagRenderMode.SelfClosing">
+ <summary>
+ Self-closing tag mode.
+ </summary>
+ </member>
+ <member name="T:System.Web.Mvc.ViewEngineResult">
+ <summary>
+ Represents the result of locating a view engine.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.ViewEngineResult.#ctor(System.Collections.Generic.IEnumerable{System.String})">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.ViewEngineResult"/> class.
+ </summary>
+ <param name="searchedLocations">The searched locations.</param>
+ </member>
+ <member name="M:System.Web.Mvc.ViewEngineResult.#ctor(System.Web.Mvc.IView,System.Web.Mvc.IViewEngine)">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.ViewEngineResult"/> class.
+ </summary>
+ <param name="view">The view.</param>
+ <param name="viewEngine">The view engine.</param>
+ </member>
+ <member name="P:System.Web.Mvc.ViewEngineResult.SearchedLocations">
+ <summary>
+ Gets searched locations.
+ </summary>
+ <value>The searched locations.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ViewEngineResult.View">
+ <summary>
+ Gets the view.
+ </summary>
+ <value>The view.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ViewEngineResult.ViewEngine">
+ <summary>
+ Gets the view engine.
+ </summary>
+ <value>The view engine.</value>
+ </member>
+ <member name="T:System.Web.Mvc.UrlHelper">
+ <summary>
+ Contains a set of methods for working with MVC routes.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.UrlHelper.#ctor(System.Web.Routing.RequestContext)">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.UrlHelper"/> class.
+ </summary>
+ <param name="requestContext">An object that contains information about the current request and the defined route it matched.</param>
+ </member>
+ <member name="M:System.Web.Mvc.UrlHelper.#ctor(System.Web.Routing.RequestContext,System.Web.Routing.RouteCollection)">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.UrlHelper"/> class.
+ </summary>
+ <param name="requestContext">An object that contains information about the current request and the defined route it matched.</param>
+ <param name="routeCollection">A collection of <see cref="N:System.Web.Routing">Route</see> instances.</param>
+ </member>
+ <member name="M:System.Web.Mvc.UrlHelper.Action(System.String)">
+ <summary>
+ Returns a virtual path for the specified route values.
+ </summary>
+ <param name="actionName">The name of the action.</param>
+ <returns>The virtual path to the action.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.UrlHelper.Action(System.String,System.Object)">
+ <summary>
+ Returns a virtual path URL for the specified route values.
+ </summary>
+ <param name="actionName">The name of the action.</param>
+ <param name="routeValues">An object containing the parameters for a route. The parameters are retrieved via reflection by examining the properties of the object. Typically created using object initializer syntax.</param>
+ <returns>The virtual path to the action.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.UrlHelper.Action(System.String,System.Web.Routing.RouteValueDictionary)">
+ <summary>
+ Returns a virtual path for the specified route values.
+ </summary>
+ <param name="actionName">The name of the action.</param>
+ <param name="routeValues">An object containing the parameters for a route.</param>
+ <returns>The virtual path to the action.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.UrlHelper.Action(System.String,System.String)">
+ <summary>
+ Returns a virtual path for the specified route values.
+ </summary>
+ <param name="actionName">The name of the action.</param>
+ <param name="controllerName">The name of the controller.</param>
+ <returns>The virtual path to the action.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.UrlHelper.Action(System.String,System.String,System.Object)">
+ <summary>
+ Returns a virtual path for the specified route values.
+ </summary>
+ <param name="actionName">The name of the action.</param>
+ <param name="controllerName">The name of the controller.</param>
+ <param name="routeValues">An object containing the parameters for a route. The parameters are retrieved via reflection by examining the properties of the object. Typically created using object initializer syntax.</param>
+ <returns>The virtual path to the action.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.UrlHelper.Action(System.String,System.String,System.Web.Routing.RouteValueDictionary)">
+ <summary>
+ Returns a virtual path for the specified route values.
+ </summary>
+ <param name="actionName">The name of the action.</param>
+ <param name="controllerName">The name of the controller.</param>
+ <param name="routeValues">An object containing the parameters for a route.</param>
+ <returns>The virtual path to the action.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.UrlHelper.Action(System.String,System.String,System.Object,System.String)">
+ <summary>
+ Returns a fully qualified URL for the specified route values.
+ </summary>
+ <param name="actionName">The name of the action.</param>
+ <param name="controllerName">The name of the controller.</param>
+ <param name="routeValues">An object containing the parameters for a route. The parameters are retrieved via reflection by examining the properties of the object. Typically created using object initializer syntax.</param>
+ <param name="protocol">The protocol for the URL such as "http" or "https".</param>
+ <returns>The URL to the action.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.UrlHelper.Action(System.String,System.String,System.Web.Routing.RouteValueDictionary,System.String,System.String)">
+ <summary>
+ Returns a fully qualified URL for the specified route values.
+ </summary>
+ <param name="actionName">The name of the action.</param>
+ <param name="controllerName">The name of the controller.</param>
+ <param name="routeValues">An object containing the parameters for a route.</param>
+ <param name="protocol">The protocol for the URL such as "http" or "https".</param>
+ <param name="hostName">The host name for the URL.</param>
+ <returns>The URL to the action.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.UrlHelper.Content(System.String)">
+ <summary>
+ Converts a virtual path to an application absolute path.
+ </summary>
+ <param name="contentPath">The virtual path to the content.</param>
+ <returns>The application absolute path.</returns>
+ <remarks>
+ If the specified <paramref name="contentPath"/> does not start with the tilde [~] character,
+ then this method returns the specified <paramref name="contentPath"/> unchanged.
+ </remarks>
+ </member>
+ <member name="M:System.Web.Mvc.UrlHelper.Encode(System.String)">
+ <summary>
+ Encodes a URL string.
+ </summary>
+ <param name="url">The text to encode.</param>
+ <returns>An encoded string.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.UrlHelper.RouteUrl(System.Object)">
+ <summary>
+ Returns a virtual path for the specified route values.
+ </summary>
+ <param name="routeValues">An object containing the parameters for a route. The parameters are retrieved via reflection by examining the properties of the object. Typically created using object initializer syntax.</param>
+ <returns>A virtual path.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.UrlHelper.RouteUrl(System.Web.Routing.RouteValueDictionary)">
+ <summary>
+ Returns a virtual path for the specified route values.
+ </summary>
+ <param name="routeValues">An object containing the parameters for a route.</param>
+ <returns>A virtual path.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.UrlHelper.RouteUrl(System.String)">
+ <summary>
+ Returns a virtual path for the specified route values.
+ </summary>
+ <param name="routeName">The name of the route used to return a virtual path.</param>
+ <returns>A virtual path.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.UrlHelper.RouteUrl(System.String,System.Object)">
+ <summary>
+ Returns a virtual path for the specified route values.
+ </summary>
+ <param name="routeName">The name of the route used to return a virtual path.</param>
+ <param name="routeValues">An object containing the parameters for a route. The parameters are retrieved via reflection by examining the properties of the object. Typically created using object initializer syntax.</param>
+ <returns>A virtual path.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.UrlHelper.RouteUrl(System.String,System.Web.Routing.RouteValueDictionary)">
+ <summary>
+ Returns a virtual path for the specified route values.
+ </summary>
+ <param name="routeName">The name of the route used to return a virtual path.</param>
+ <param name="routeValues">An object containing the parameters for a route.</param>
+ <returns>A virtual path.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.UrlHelper.RouteUrl(System.String,System.Object,System.String)">
+ <summary>
+ Returns a fully qualified URL for the specified route values.
+ </summary>
+ <param name="routeName">The name of the route used to return a virtual path.</param>
+ <param name="routeValues">An object containing the parameters for a route. The parameters are retrieved via reflection by examining the properties of the object. Typically created using object initializer syntax.</param>
+ <param name="protocol">The protocol for the URL such as "http" or "https".</param>
+ <returns>A virtual path.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.UrlHelper.RouteUrl(System.String,System.Web.Routing.RouteValueDictionary,System.String,System.String)">
+ <summary>
+ Returns a fully qualified URL for the specified route values.
+ </summary>
+ <param name="routeName">The name of the route used to generate the virtual path.</param>
+ <param name="routeValues">An object containing the parameters for a route.</param>
+ <param name="protocol">The protocol for the URL such as "http" or "https".</param>
+ <param name="hostName">The host name for the URL.</param>
+ <returns>The virtual path to the action.</returns>
+ </member>
+ <member name="P:System.Web.Mvc.UrlHelper.RequestContext">
+ <summary>
+ Encapsulates information about an HTTP request that matches a defined route.
+ </summary>
+ <value>The request context.</value>
+ </member>
+ <member name="P:System.Web.Mvc.UrlHelper.RouteCollection">
+ <summary>
+ A collection containing the routes registered for the application.
+ </summary>
+ <value>The route collection.</value>
+ </member>
+ <member name="T:System.Web.Mvc.RedirectResult">
+ <summary>
+ Represents a result that performs a redirection given a specified URI.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.RedirectResult.#ctor(System.String)">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.RedirectResult"/> class.
+ </summary>
+ <param name="url">The URL.</param>
+ </member>
+ <member name="M:System.Web.Mvc.RedirectResult.ExecuteResult(System.Web.Mvc.ControllerContext)">
+ <summary>
+ Enables processing of the result of an action method by a custom type that inherits from <see cref="T:System.Web.Mvc.ActionResult"/>.
+ </summary>
+ <param name="context">The context within which the result is executed.</param>
+ </member>
+ <member name="P:System.Web.Mvc.RedirectResult.Url">
+ <summary>
+ Gets the URL.
+ </summary>
+ <value>The URL.</value>
+ </member>
+ <member name="T:System.Web.Mvc.InputType">
+ <summary>
+ Enumerates the types of input controls.
+ </summary>
+ </member>
+ <member name="F:System.Web.Mvc.InputType.CheckBox">
+ <summary>
+ A check box.
+ </summary>
+ </member>
+ <member name="F:System.Web.Mvc.InputType.Hidden">
+ <summary>
+ A hidden field.
+ </summary>
+ </member>
+ <member name="F:System.Web.Mvc.InputType.Password">
+ <summary>
+ A password box.
+ </summary>
+ </member>
+ <member name="F:System.Web.Mvc.InputType.Radio">
+ <summary>
+ A radio button.
+ </summary>
+ </member>
+ <member name="F:System.Web.Mvc.InputType.Text">
+ <summary>
+ A text box.
+ </summary>
+ </member>
+ <member name="T:System.Web.Mvc.ViewUserControl`1">
+ <summary>
+ Represents the information needed to build a strongly typed user control.
+ </summary>
+ <typeparam name="TModel">The type of the model.</typeparam>
+ </member>
+ <member name="T:System.Web.Mvc.ViewUserControl">
+ <summary>
+ Represents the information needed to build a user control.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.ViewUserControl.SetViewData(System.Web.Mvc.ViewDataDictionary)">
+ <summary>
+ Sets the view data.
+ </summary>
+ <param name="viewData">The view data.</param>
+ </member>
+ <member name="M:System.Web.Mvc.ViewUserControl.EnsureViewData">
+ <summary>
+ Ensures the view data.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.ViewUserControl.RenderView(System.Web.Mvc.ViewContext)">
+ <summary>
+ Renders the view.
+ </summary>
+ <param name="viewContext">The view context.</param>
+ </member>
+ <member name="P:System.Web.Mvc.ViewUserControl.Ajax">
+ <summary>
+ Gets the ajax.
+ </summary>
+ <value>The ajax.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ViewUserControl.Html">
+ <summary>
+ Gets the HTML.
+ </summary>
+ <value>The HTML.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ViewUserControl.Model">
+ <summary>
+ Gets the model.
+ </summary>
+ <value>The model.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ViewUserControl.TempData">
+ <summary>
+ Gets the temp data.
+ </summary>
+ <value>The temp data.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ViewUserControl.Url">
+ <summary>
+ Gets the URL.
+ </summary>
+ <value>The URL.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ViewUserControl.ViewContext">
+ <summary>
+ Gets or sets the view context.
+ </summary>
+ <value>The view context.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ViewUserControl.ViewData">
+ <summary>
+ Gets or sets the view data.
+ </summary>
+ <value>The view data.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ViewUserControl.ViewDataKey">
+ <summary>
+ Gets or sets the view data key.
+ </summary>
+ <value>The view data key.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ViewUserControl.Writer">
+ <summary>
+ Gets the writer.
+ </summary>
+ <value>The writer.</value>
+ </member>
+ <member name="M:System.Web.Mvc.ViewUserControl`1.SetViewData(System.Web.Mvc.ViewDataDictionary)">
+ <summary>
+ Sets the view data.
+ </summary>
+ <param name="viewData">The view data.</param>
+ </member>
+ <member name="P:System.Web.Mvc.ViewUserControl`1.Ajax">
+ <summary>
+ Gets the ajax.
+ </summary>
+ <value>The ajax.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ViewUserControl`1.Html">
+ <summary>
+ Gets the HTML.
+ </summary>
+ <value>The HTML.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ViewUserControl`1.Model">
+ <summary>
+ Gets the model.
+ </summary>
+ <value>The model.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ViewUserControl`1.ViewData">
+ <summary>
+ Gets or sets the view data.
+ </summary>
+ <value>The view data.</value>
+ </member>
+ <member name="T:System.Web.Mvc.TagBuilder">
+ <summary>
+ Class used by the HTML helpers to build HTML tags.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.TagBuilder.#ctor(System.String)">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.TagBuilder"/> class.
+ </summary>
+ <param name="tagName">Name of the tag.</param>
+ </member>
+ <member name="M:System.Web.Mvc.TagBuilder.AddCssClass(System.String)">
+ <summary>
+ Adds the CSS class.
+ </summary>
+ <param name="value">The value.</param>
+ </member>
+ <member name="M:System.Web.Mvc.TagBuilder.GenerateId(System.String)">
+ <summary>
+ Generates the id.
+ </summary>
+ <param name="name">The name.</param>
+ </member>
+ <member name="M:System.Web.Mvc.TagBuilder.MergeAttribute(System.String,System.String)">
+ <summary>
+ Merges the attribute.
+ </summary>
+ <param name="key">The key.</param>
+ <param name="value">The value.</param>
+ </member>
+ <member name="M:System.Web.Mvc.TagBuilder.MergeAttribute(System.String,System.String,System.Boolean)">
+ <summary>
+ Merges the attribute.
+ </summary>
+ <param name="key">The key.</param>
+ <param name="value">The value.</param>
+ <param name="replaceExisting">if set to <c>true</c> [replace existing].</param>
+ </member>
+ <member name="M:System.Web.Mvc.TagBuilder.MergeAttributes``2(System.Collections.Generic.IDictionary{``0,``1})">
+ <summary>
+ Merges the attributes.
+ </summary>
+ <typeparam name="TKey">The type of the key.</typeparam>
+ <typeparam name="TValue">The type of the value.</typeparam>
+ <param name="attributes">The attributes.</param>
+ </member>
+ <member name="M:System.Web.Mvc.TagBuilder.MergeAttributes``2(System.Collections.Generic.IDictionary{``0,``1},System.Boolean)">
+ <summary>
+ Merges the attributes.
+ </summary>
+ <typeparam name="TKey">The type of the key.</typeparam>
+ <typeparam name="TValue">The type of the value.</typeparam>
+ <param name="attributes">The attributes.</param>
+ <param name="replaceExisting">if set to <c>true</c> [replace existing].</param>
+ </member>
+ <member name="M:System.Web.Mvc.TagBuilder.SetInnerText(System.String)">
+ <summary>
+ Sets the inner text.
+ </summary>
+ <param name="innerText">The inner text.</param>
+ </member>
+ <member name="M:System.Web.Mvc.TagBuilder.ToString">
+ <summary>
+ Returns a <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
+ </summary>
+ <returns>
+ A <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.TagBuilder.ToString(System.Web.Mvc.TagRenderMode)">
+ <summary>
+ Toes the string.
+ </summary>
+ <param name="renderMode">The render mode.</param>
+ <returns></returns>
+ </member>
+ <member name="P:System.Web.Mvc.TagBuilder.Attributes">
+ <summary>
+ Gets the attributes.
+ </summary>
+ <value>The attributes.</value>
+ </member>
+ <member name="P:System.Web.Mvc.TagBuilder.IdAttributeDotReplacement">
+ <summary>
+ Gets or sets the id attribute dot replacement.
+ </summary>
+ <value>The id attribute dot replacement.</value>
+ </member>
+ <member name="P:System.Web.Mvc.TagBuilder.InnerHtml">
+ <summary>
+ Gets or sets the inner HTML.
+ </summary>
+ <value>The inner HTML.</value>
+ </member>
+ <member name="P:System.Web.Mvc.TagBuilder.TagName">
+ <summary>
+ Gets the name of the tag.
+ </summary>
+ <value>The name of the tag.</value>
+ </member>
+ <member name="T:System.Web.Mvc.RedirectToRouteResult">
+ <summary>
+ Represents a result that performs a redirection given a route values dictionary.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.RedirectToRouteResult.#ctor(System.Web.Routing.RouteValueDictionary)">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.RedirectToRouteResult"/> class.
+ </summary>
+ <param name="routeValues">The route values.</param>
+ </member>
+ <member name="M:System.Web.Mvc.RedirectToRouteResult.#ctor(System.String,System.Web.Routing.RouteValueDictionary)">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.RedirectToRouteResult"/> class.
+ </summary>
+ <param name="routeName">Name of the route.</param>
+ <param name="routeValues">The route values.</param>
+ </member>
+ <member name="M:System.Web.Mvc.RedirectToRouteResult.ExecuteResult(System.Web.Mvc.ControllerContext)">
+ <summary>
+ Enables processing of the result of an action method by a custom type that inherits from <see cref="T:System.Web.Mvc.ActionResult"/>.
+ </summary>
+ <param name="context">The context within which the result is executed.</param>
+ </member>
+ <member name="P:System.Web.Mvc.RedirectToRouteResult.RouteName">
+ <summary>
+ Gets the name of the route.
+ </summary>
+ <value>The name of the route.</value>
+ </member>
+ <member name="P:System.Web.Mvc.RedirectToRouteResult.RouteValues">
+ <summary>
+ Gets the route values.
+ </summary>
+ <value>The route values.</value>
+ </member>
+ <member name="T:System.Web.Mvc.ControllerBuilder">
+ <summary>
+ Responsible for dynamically building a controller.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.ControllerBuilder.#ctor">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.ControllerBuilder"/> class.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.ControllerBuilder.GetControllerFactory">
+ <summary>
+ Gets the controller factory.
+ </summary>
+ <returns>The controller factory.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.ControllerBuilder.SetControllerFactory(System.Web.Mvc.IControllerFactory)">
+ <summary>
+ Sets the controller factory.
+ </summary>
+ <param name="controllerFactory">The controller factory.</param>
+ </member>
+ <member name="M:System.Web.Mvc.ControllerBuilder.SetControllerFactory(System.Type)">
+ <summary>
+ Sets the controller factory.
+ </summary>
+ <param name="controllerFactoryType">Type of the controller factory.</param>
+ </member>
+ <member name="P:System.Web.Mvc.ControllerBuilder.Current">
+ <summary>
+ Gets the current controller builder object.
+ </summary>
+ <value>The current controller builder.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ControllerBuilder.DefaultNamespaces">
+ <summary>
+ Gets the default namespaces.
+ </summary>
+ <value>The default namespaces.</value>
+ </member>
+ <member name="T:System.Web.Mvc.Html.InputExtensions">
+ <summary>
+ Represents support for HTML input controls in an application.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.Html.InputExtensions.CheckBox(System.Web.Mvc.HtmlHelper,System.String)">
+ <summary>
+ Returns the input tag for a checkbox.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="name">The form field name.</param>
+ <returns>
+ An input tag with the type set to "checkbox".
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.InputExtensions.CheckBox(System.Web.Mvc.HtmlHelper,System.String,System.Boolean)">
+ <summary>
+ Returns the input tag for a checkbox.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="name">The form field name.</param>
+ <param name="isChecked">A boolean indicating whether or not the checkbox is checked.</param>
+ <returns>
+ An input tag with the type set to "checkbox".
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.InputExtensions.CheckBox(System.Web.Mvc.HtmlHelper,System.String,System.Boolean,System.Object)">
+ <summary>
+ Returns the input tag for a checkbox.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="name">The form field name.</param>
+ <param name="isChecked">A boolean indicating whether or not the checkbox is checked.</param>
+ <param name="htmlAttributes">An object containing the HTML attributes for the element. The attributes are retrieved via reflection by examining the properties of the object. Typically created using object initializer syntax.</param>
+ <returns>
+ An input tag with the type set to "checkbox".
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.InputExtensions.CheckBox(System.Web.Mvc.HtmlHelper,System.String,System.Object)">
+ <summary>
+ Returns the input tag for a checkbox.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="name">The form field name.</param>
+ <param name="htmlAttributes">An object containing the HTML attributes for the element. The attributes are retrieved via reflection by examining the properties of the object. Typically created using object initializer syntax.</param>
+ <returns>
+ An input tag with the type set to "checkbox".
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.InputExtensions.CheckBox(System.Web.Mvc.HtmlHelper,System.String,System.Collections.Generic.IDictionary{System.String,System.Object})">
+ <summary>
+ Returns the input tag for a checkbox.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="name">The form field name.</param>
+ <param name="htmlAttributes">An object containing the HTML attributes for the element.</param>
+ <returns>
+ An input tag with the type set to "checkbox".
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.InputExtensions.CheckBox(System.Web.Mvc.HtmlHelper,System.String,System.Boolean,System.Collections.Generic.IDictionary{System.String,System.Object})">
+ <summary>
+ Returns the input tag for a checkbox.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="name">The form field name.</param>
+ <param name="isChecked">A boolean indicating whether or not the checkbox is checked.</param>
+ <param name="htmlAttributes">An object containing the HTML attributes for the element.</param>
+ <returns>
+ An input tag with the type set to "checkbox".
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.InputExtensions.Hidden(System.Web.Mvc.HtmlHelper,System.String)">
+ <summary>
+ Returns a hidden input tag.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="name">The form field name and <see cref="T:System.Web.Mvc.ViewDataDictionary">ViewData</see> key used to look up the value.</param>
+ <returns>
+ An input tag with the type set to "hidden".
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.InputExtensions.Hidden(System.Web.Mvc.HtmlHelper,System.String,System.Object)">
+ <summary>
+ Returns a hidden input tag.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="name">The form field name and <see cref="T:System.Web.Mvc.ViewDataDictionary">ViewData</see> key used to look up the value.</param>
+ <param name="value">The value of the hidden input. If null, looks at the <see cref="T:System.Web.Mvc.ViewDataDictionary">ViewData</see> and then <see cref="T:System.Web.Mvc.ModelStateDictionary">ModelState</see>for the value.</param>
+ <returns>
+ An input tag with the type set to "hidden".
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.InputExtensions.Hidden(System.Web.Mvc.HtmlHelper,System.String,System.Object,System.Object)">
+ <summary>
+ Returns a hidden input tag.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="name">The form field name and <see cref="T:System.Web.Mvc.ViewDataDictionary">ViewData</see> key used to look up the value.</param>
+ <param name="value">The value of the hidden input. If null, looks at the <see cref="T:System.Web.Mvc.ViewDataDictionary">ViewData</see> and then <see cref="T:System.Web.Mvc.ModelStateDictionary">ModelState</see>for the value.</param>
+ <param name="htmlAttributes">An object containing the HTML attributes for the element. The attributes are retrieved via reflection by examining the properties of the object. Typically created using object initializer syntax.</param>
+ <returns>
+ An input tag with the type set to "hidden".
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.InputExtensions.Hidden(System.Web.Mvc.HtmlHelper,System.String,System.Object,System.Collections.Generic.IDictionary{System.String,System.Object})">
+ <summary>
+ Returns a hidden input tag.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="name">The form field name and <see cref="T:System.Web.Mvc.ViewDataDictionary">ViewData</see> key used to look up the value.</param>
+ <param name="value">The value of the hidden input. If null, looks at the <see cref="T:System.Web.Mvc.ViewDataDictionary">ViewData</see> and then <see cref="T:System.Web.Mvc.ModelStateDictionary">ModelState</see>for the value.</param>
+ <param name="htmlAttributes">An object containing the HTML attributes for the element.</param>
+ <returns>
+ An input tag with the type set to "hidden".
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.InputExtensions.Password(System.Web.Mvc.HtmlHelper,System.String)">
+ <summary>
+ Returns a password tag.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="name">The form field name and <see cref="T:System.Web.Mvc.ViewDataDictionary">ViewData</see> key used to look up the value.</param>
+ <returns>
+ An input tag with the type set to "password".
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.InputExtensions.Password(System.Web.Mvc.HtmlHelper,System.String,System.Object)">
+ <summary>
+ Returns a password tag.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="name">The form field name and <see cref="T:System.Web.Mvc.ViewDataDictionary">ViewData</see> key used to look up the value.</param>
+ <param name="value">The value of the input. If null, looks at the <see cref="T:System.Web.Mvc.ViewDataDictionary">ViewData</see> and then <see cref="T:System.Web.Mvc.ModelStateDictionary">ModelState</see>for the value.</param>
+ <returns>
+ An input tag with the type set to "password".
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.InputExtensions.Password(System.Web.Mvc.HtmlHelper,System.String,System.Object,System.Object)">
+ <summary>
+ Returns a password tag.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="name">The form field name and <see cref="T:System.Web.Mvc.ViewDataDictionary">ViewData</see> key used to look up the value.</param>
+ <param name="value">The value of the input. If null, looks at the <see cref="T:System.Web.Mvc.ViewDataDictionary">ViewData</see> and then <see cref="T:System.Web.Mvc.ModelStateDictionary">ModelState</see>for the value.</param>
+ <param name="htmlAttributes">An object containing the HTML attributes for the element. The attributes are retrieved via reflection by examining the properties of the object. Typically created using object initializer syntax.</param>
+ <returns>
+ An input tag with the type set to "password".
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.InputExtensions.Password(System.Web.Mvc.HtmlHelper,System.String,System.Object,System.Collections.Generic.IDictionary{System.String,System.Object})">
+ <summary>
+ Returns a password tag.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="name">The form field name and <see cref="T:System.Web.Mvc.ViewDataDictionary">ViewData</see> key used to look up the value.</param>
+ <param name="value">The value of the input. If null, looks at the <see cref="T:System.Web.Mvc.ViewDataDictionary">ViewData</see> and then <see cref="T:System.Web.Mvc.ModelStateDictionary">ModelState</see>for the value.</param>
+ <param name="htmlAttributes">An object containing the HTML attributes for the element.</param>
+ <returns>
+ An input tag with the type set to "password".
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.InputExtensions.RadioButton(System.Web.Mvc.HtmlHelper,System.String,System.Object)">
+ <summary>
+ Returns a radio button tag used to present one possible value, out of a range, for a form field specified by the name.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="name">The form field name and <see cref="T:System.Web.Mvc.ViewDataDictionary">ViewData</see> key used to look up the current value.</param>
+ <param name="value">If checked, the value of the radio button submitted when the form is posted. If the value in <see cref="T:System.Web.Mvc.ViewDataDictionary">ViewData</see> or <see cref="T:System.Web.Mvc.ModelStateDictionary">ModelState</see> matches this value, the radio button is checked.</param>
+ <returns>
+ An input tag with the type set to "radio".
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.InputExtensions.RadioButton(System.Web.Mvc.HtmlHelper,System.String,System.Object,System.Object)">
+ <summary>
+ Returns a radio button tag used to present one possible value, out of a range, for a form field specified by the name.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="name">The form field name and <see cref="T:System.Web.Mvc.ViewDataDictionary">ViewData</see> key used to look up the current value.</param>
+ <param name="value">If checked, the value of the radio button submitted when the form is posted. If the value in <see cref="T:System.Web.Mvc.ViewDataDictionary">ViewData</see> or <see cref="T:System.Web.Mvc.ModelStateDictionary">ModelState</see> matches this value, the radio button is checked.</param>
+ <param name="htmlAttributes">An object containing the HTML attributes for the element. The attributes are retrieved via reflection by examining the properties of the object. Typically created using object initializer syntax.</param>
+ <returns>
+ An input tag with the type set to "radio".
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.InputExtensions.RadioButton(System.Web.Mvc.HtmlHelper,System.String,System.Object,System.Collections.Generic.IDictionary{System.String,System.Object})">
+ <summary>
+ Returns a radio button tag used to present one possible value, out of a range, for a form field specified by the name.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="name">The form field name and <see cref="T:System.Web.Mvc.ViewDataDictionary">ViewData</see> key used to look up the current value.</param>
+ <param name="value">If checked, the value of the radio button submitted when the form is posted. If the value in <see cref="T:System.Web.Mvc.ViewDataDictionary">ViewData</see> or <see cref="T:System.Web.Mvc.ModelStateDictionary">ModelState</see> matches this value, the radio button is checked.</param>
+ <param name="htmlAttributes">An object containing the HTML attributes for the element.</param>
+ <returns>
+ An input tag with the type set to "radio".
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.InputExtensions.RadioButton(System.Web.Mvc.HtmlHelper,System.String,System.Object,System.Boolean)">
+ <summary>
+ Returns a radio button tag used to present one possible value, out of a range, for a form field specified by the name.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="name">The form field name and <see cref="T:System.Web.Mvc.ViewDataDictionary">ViewData</see> key used to look up the current value.</param>
+ <param name="value">If checked, the value of the radio button submitted when the form is posted. If the value in <see cref="T:System.Web.Mvc.ViewDataDictionary">ViewData</see> or <see cref="T:System.Web.Mvc.ModelStateDictionary">ModelState</see> matches this value, the radio button is checked.</param>
+ <param name="isChecked">Whether or not the radio button is checked.</param>
+ <returns>
+ An input tag with the type set to "radio".
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.InputExtensions.RadioButton(System.Web.Mvc.HtmlHelper,System.String,System.Object,System.Boolean,System.Object)">
+ <summary>
+ Returns a radio button tag used to present one possible value, out of a range, for a form field specified by the name.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="name">The form field name and <see cref="T:System.Web.Mvc.ViewDataDictionary">ViewData</see> key used to look up the current value.</param>
+ <param name="value">If checked, the value of the radio button submitted when the form is posted. If the value in <see cref="T:System.Web.Mvc.ViewDataDictionary">ViewData</see> or <see cref="T:System.Web.Mvc.ModelStateDictionary">ModelState</see> matches this value, the radio button is checked.</param>
+ <param name="isChecked">Whether or not the radio button is checked.</param>
+ <param name="htmlAttributes">An object containing the HTML attributes for the element. The attributes are retrieved via reflection by examining the properties of the object. Typically created using object initializer syntax.</param>
+ <returns>
+ An input tag with the type set to "radio".
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.InputExtensions.RadioButton(System.Web.Mvc.HtmlHelper,System.String,System.Object,System.Boolean,System.Collections.Generic.IDictionary{System.String,System.Object})">
+ <summary>
+ Returns a radio button tag used to present one possible value, out of a range, for a form field specified by the name.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="name">The form field name and <see cref="T:System.Web.Mvc.ViewDataDictionary">ViewData</see> key used to look up the current value.</param>
+ <param name="value">If checked, the value of the radio button submitted when the form is posted. If the value in <see cref="T:System.Web.Mvc.ViewDataDictionary">ViewData</see> or <see cref="T:System.Web.Mvc.ModelStateDictionary">ModelState</see> matches this value, the radio button is checked.</param>
+ <param name="isChecked">Whether or not the radio button is checked.</param>
+ <param name="htmlAttributes">An object containing the HTML attributes for the element.</param>
+ <returns>
+ An input tag with the type set to "radio".
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.InputExtensions.TextBox(System.Web.Mvc.HtmlHelper,System.String)">
+ <summary>
+ Returns a text input tag.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="name">The form field name and <see cref="T:System.Web.Mvc.ViewDataDictionary">ViewData</see> key used to look up the value.</param>
+ <returns>An input tag with the type set to "text".</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.InputExtensions.TextBox(System.Web.Mvc.HtmlHelper,System.String,System.Object)">
+ <summary>
+ Returns a text input tag.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="name">The form field name and <see cref="T:System.Web.Mvc.ViewDataDictionary">ViewData</see> key used to look up the value.</param>
+ <param name="value">The value of the input. If null, looks at the <see cref="T:System.Web.Mvc.ViewDataDictionary">ViewData</see> and then <see cref="T:System.Web.Mvc.ModelStateDictionary">ModelState</see>for the value.</param>
+ <returns>An input tag with the type set to "text".</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.InputExtensions.TextBox(System.Web.Mvc.HtmlHelper,System.String,System.Object,System.Object)">
+ <summary>
+ Returns a text input tag.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="name">The form field name and <see cref="T:System.Web.Mvc.ViewDataDictionary">ViewData</see> key used to look up the value.</param>
+ <param name="value">The value of the input. If null, looks at the <see cref="T:System.Web.Mvc.ViewDataDictionary">ViewData</see> and then <see cref="T:System.Web.Mvc.ModelStateDictionary">ModelState</see>for the value.</param>
+ <param name="htmlAttributes">An object containing the HTML attributes for the element. The attributes are retrieved via reflection by examining the properties of the object. Typically created using object initializer syntax.</param>
+ <returns>An input tag with the type set to "text".</returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.InputExtensions.TextBox(System.Web.Mvc.HtmlHelper,System.String,System.Object,System.Collections.Generic.IDictionary{System.String,System.Object})">
+ <summary>
+ Returns a text input tag.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="name">The form field name and <see cref="T:System.Web.Mvc.ViewDataDictionary">ViewData</see> key used to look up the value.</param>
+ <param name="value">The value of the input. If null, looks at the <see cref="T:System.Web.Mvc.ViewDataDictionary">ViewData</see> and then <see cref="T:System.Web.Mvc.ModelStateDictionary">ModelState</see>for the value.</param>
+ <param name="htmlAttributes">An object containing the HTML attributes for the element.</param>
+ <returns>An input tag with the type set to "text".</returns>
+ </member>
+ <member name="T:System.Web.Mvc.FormCollection">
+ <summary>
+ Contains the Form value providers for the application.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.FormCollection.#ctor">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.FormCollection"/> class.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.FormCollection.#ctor(System.Collections.Specialized.NameValueCollection)">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.FormCollection"/> class.
+ </summary>
+ <param name="collection">The collection.</param>
+ </member>
+ <member name="M:System.Web.Mvc.FormCollection.ToValueProvider">
+ <summary>
+ Returns a dictionary of value providers.
+ </summary>
+ <returns>A dictionary of value providers.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.FormCollection.GetValue(System.String)">
+ <summary>
+ Gets the value provider.
+ </summary>
+ <param name="name">The name of the value provider.</param>
+ <returns>The value provider.</returns>
+ </member>
+ <member name="T:System.Web.Mvc.ViewContext">
+ <summary>
+ Encapsulates information related to rendering a view.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.ViewContext.#ctor">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.ViewContext"/> class.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.ViewContext.#ctor(System.Web.Mvc.ControllerContext,System.Web.Mvc.IView,System.Web.Mvc.ViewDataDictionary,System.Web.Mvc.TempDataDictionary)">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.ViewContext"/> class.
+ </summary>
+ <param name="controllerContext">The controller context.</param>
+ <param name="view">The view.</param>
+ <param name="viewData">The view data.</param>
+ <param name="tempData">The temp data.</param>
+ </member>
+ <member name="P:System.Web.Mvc.ViewContext.View">
+ <summary>
+ Gets the <see cref="T:System.Web.Mvc.IView"/> to render.
+ </summary>
+ <value>The view.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ViewContext.ViewData">
+ <summary>
+ Gets the view data supplied to the view.
+ </summary>
+ <value>The view data.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ViewContext.TempData">
+ <summary>
+ Gets data associated with this request which only lives for one request.
+ </summary>
+ <value>The temp data.</value>
+ </member>
+ <member name="T:System.Web.Mvc.ModelBinderDictionary">
+ <summary>
+ Contains all model binders for the application listed by binder type.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.ModelBinderDictionary.Add(System.Collections.Generic.KeyValuePair{System.Type,System.Web.Mvc.IModelBinder})">
+ <summary>
+ Adds an item to the <see cref="T:System.Collections.Generic.ICollection`1"/>.
+ </summary>
+ <param name="item">The object to add to the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param>
+ <exception cref="T:System.NotSupportedException">
+ The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only.
+ </exception>
+ </member>
+ <member name="M:System.Web.Mvc.ModelBinderDictionary.Add(System.Type,System.Web.Mvc.IModelBinder)">
+ <summary>
+ Adds an element with the provided key and value to the <see cref="T:System.Collections.Generic.IDictionary`2"/>.
+ </summary>
+ <param name="key">The object to use as the key of the element to add.</param>
+ <param name="value">The object to use as the value of the element to add.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="key"/> is null.
+ </exception>
+ <exception cref="T:System.ArgumentException">
+ An element with the same key already exists in the <see cref="T:System.Collections.Generic.IDictionary`2"/>.
+ </exception>
+ <exception cref="T:System.NotSupportedException">
+ The <see cref="T:System.Collections.Generic.IDictionary`2"/> is read-only.
+ </exception>
+ </member>
+ <member name="M:System.Web.Mvc.ModelBinderDictionary.Clear">
+ <summary>
+ Removes all items from the <see cref="T:System.Collections.Generic.ICollection`1"/>.
+ </summary>
+ <exception cref="T:System.NotSupportedException">
+ The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only.
+ </exception>
+ </member>
+ <member name="M:System.Web.Mvc.ModelBinderDictionary.Contains(System.Collections.Generic.KeyValuePair{System.Type,System.Web.Mvc.IModelBinder})">
+ <summary>
+ Determines whether the <see cref="T:System.Collections.Generic.ICollection`1"/> contains a specific value.
+ </summary>
+ <param name="item">The object to locate in the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param>
+ <returns>
+ true if <paramref name="item"/> is found in the <see cref="T:System.Collections.Generic.ICollection`1"/>; otherwise, false.
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.ModelBinderDictionary.ContainsKey(System.Type)">
+ <summary>
+ Determines whether the <see cref="T:System.Collections.Generic.IDictionary`2"/> contains an element with the specified key.
+ </summary>
+ <param name="key">The key to locate in the <see cref="T:System.Collections.Generic.IDictionary`2"/>.</param>
+ <returns>
+ true if the <see cref="T:System.Collections.Generic.IDictionary`2"/> contains an element with the key; otherwise, false.
+ </returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="key"/> is null.
+ </exception>
+ </member>
+ <member name="M:System.Web.Mvc.ModelBinderDictionary.CopyTo(System.Collections.Generic.KeyValuePair{System.Type,System.Web.Mvc.IModelBinder}[],System.Int32)">
+ <summary>
+ Copies the elements of the <see cref="T:System.Collections.Generic.ICollection`1"/> to an <see cref="T:System.Array"/>, starting at a particular <see cref="T:System.Array"/> index.
+ </summary>
+ <param name="array">The one-dimensional <see cref="T:System.Array"/> that is the destination of the elements copied from <see cref="T:System.Collections.Generic.ICollection`1"/>. The <see cref="T:System.Array"/> must have zero-based indexing.</param>
+ <param name="arrayIndex">The zero-based index in <paramref name="array"/> at which copying begins.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="array"/> is null.
+ </exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="arrayIndex"/> is less than 0.
+ </exception>
+ <exception cref="T:System.ArgumentException">
+ <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"/> 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>
+ </member>
+ <member name="M:System.Web.Mvc.ModelBinderDictionary.GetBinder(System.Type)">
+ <summary>
+ Gets the model binder.
+ </summary>
+ <param name="modelType">Type of the model.</param>
+ <returns>The model binder.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.ModelBinderDictionary.GetBinder(System.Type,System.Boolean)">
+ <summary>
+ Gets the model binder.
+ </summary>
+ <param name="modelType">Type of the model.</param>
+ <param name="fallbackToDefault">if set to <c>true</c> [fallback to default].</param>
+ <returns>The model binder.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.ModelBinderDictionary.GetEnumerator">
+ <summary>
+ Returns an enumerator that iterates through the collection.
+ </summary>
+ <returns>
+ A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection.
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.ModelBinderDictionary.Remove(System.Collections.Generic.KeyValuePair{System.Type,System.Web.Mvc.IModelBinder})">
+ <summary>
+ Removes the first occurrence of a specific object from the <see cref="T:System.Collections.Generic.ICollection`1"/>.
+ </summary>
+ <param name="item">The object to remove from the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param>
+ <returns>
+ true if <paramref name="item"/> was successfully removed from the <see cref="T:System.Collections.Generic.ICollection`1"/>; otherwise, false. This method also returns false if <paramref name="item"/> is not found in the original <see cref="T:System.Collections.Generic.ICollection`1"/>.
+ </returns>
+ <exception cref="T:System.NotSupportedException">
+ The <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only.
+ </exception>
+ </member>
+ <member name="M:System.Web.Mvc.ModelBinderDictionary.Remove(System.Type)">
+ <summary>
+ Removes the element with the specified key from the <see cref="T:System.Collections.Generic.IDictionary`2"/>.
+ </summary>
+ <param name="key">The key of the element to remove.</param>
+ <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 <see cref="T:System.Collections.Generic.IDictionary`2"/>.
+ </returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="key"/> is null.
+ </exception>
+ <exception cref="T:System.NotSupportedException">
+ The <see cref="T:System.Collections.Generic.IDictionary`2"/> is read-only.
+ </exception>
+ </member>
+ <member name="M:System.Web.Mvc.ModelBinderDictionary.TryGetValue(System.Type,System.Web.Mvc.IModelBinder@)">
+ <summary>
+ Gets the value associated with the specified key.
+ </summary>
+ <param name="key">The key whose value to get.</param>
+ <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>
+ <returns>
+ true if the object that implements <see cref="T:System.Collections.Generic.IDictionary`2"/> contains an element with the specified key; otherwise, false.
+ </returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="key"/> is null.
+ </exception>
+ </member>
+ <member name="M:System.Web.Mvc.ModelBinderDictionary.System#Collections#IEnumerable#GetEnumerator">
+ <summary>
+ Returns an enumerator that iterates through a collection.
+ </summary>
+ <returns>
+ An <see cref="T:System.Collections.IEnumerator"/> object that can be used to iterate through the collection.
+ </returns>
+ </member>
+ <member name="P:System.Web.Mvc.ModelBinderDictionary.Count">
+ <summary>
+ Gets the number of elements contained in the <see cref="T:System.Collections.Generic.ICollection`1"/>.
+ </summary>
+ <value></value>
+ <returns>
+ The number of elements contained in the <see cref="T:System.Collections.Generic.ICollection`1"/>.
+ </returns>
+ </member>
+ <member name="P:System.Web.Mvc.ModelBinderDictionary.DefaultBinder">
+ <summary>
+ Gets or sets the default binder.
+ </summary>
+ <value>The default binder.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ModelBinderDictionary.IsReadOnly">
+ <summary>
+ Gets a value indicating whether the <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only.
+ </summary>
+ <value></value>
+ <returns>true if the <see cref="T:System.Collections.Generic.ICollection`1"/> is read-only; otherwise, false.
+ </returns>
+ </member>
+ <member name="P:System.Web.Mvc.ModelBinderDictionary.Keys">
+ <summary>
+ Gets an <see cref="T:System.Collections.Generic.ICollection`1"/> containing the keys of the <see cref="T:System.Collections.Generic.IDictionary`2"/>.
+ </summary>
+ <value></value>
+ <returns>
+ An <see cref="T:System.Collections.Generic.ICollection`1"/> containing the keys of the object that implements <see cref="T:System.Collections.Generic.IDictionary`2"/>.
+ </returns>
+ </member>
+ <member name="P:System.Web.Mvc.ModelBinderDictionary.Item(System.Type)">
+ <summary>
+ Gets or sets the <see cref="T:System.Web.Mvc.IModelBinder"/> with the specified key.
+ </summary>
+ <value></value>
+ </member>
+ <member name="P:System.Web.Mvc.ModelBinderDictionary.Values">
+ <summary>
+ Gets an <see cref="T:System.Collections.Generic.ICollection`1"/> containing the values in the <see cref="T:System.Collections.Generic.IDictionary`2"/>.
+ </summary>
+ <value></value>
+ <returns>
+ An <see cref="T:System.Collections.Generic.ICollection`1"/> containing the values in the object that implements <see cref="T:System.Collections.Generic.IDictionary`2"/>.
+ </returns>
+ </member>
+ <member name="T:System.Web.Mvc.ResultExecutingContext">
+ <summary>
+ Provides the context for the ResultExecuting method of an <see cref="T:System.Web.Mvc.ActionFilterAttribute"/>.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.ResultExecutingContext.#ctor">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.ResultExecutingContext"/> class.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.ResultExecutingContext.#ctor(System.Web.Mvc.ControllerContext,System.Web.Mvc.ActionResult)">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.ResultExecutingContext"/> class.
+ </summary>
+ <param name="controllerContext">The controller context.</param>
+ <param name="result">The result.</param>
+ </member>
+ <member name="P:System.Web.Mvc.ResultExecutingContext.Cancel">
+ <summary>
+ Gets or sets a value indicating whether this <see cref="T:System.Web.Mvc.ResultExecutingContext"/> is cancel.
+ </summary>
+ <value><c>true</c> if cancel; otherwise, <c>false</c>.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ResultExecutingContext.Result">
+ <summary>
+ Gets or sets the action result.
+ </summary>
+ <value>The action result.</value>
+ </member>
+ <member name="T:System.Web.Mvc.ViewEngineCollection">
+ <summary>
+ Collection of view engines available to the application.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.ViewEngineCollection.#ctor">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.ViewEngineCollection"/> class.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.ViewEngineCollection.#ctor(System.Collections.Generic.IList{System.Web.Mvc.IViewEngine})">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.ViewEngineCollection"/> class.
+ </summary>
+ <param name="list">The list that is wrapped by the new collection.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="list"/> is null.
+ </exception>
+ </member>
+ <member name="M:System.Web.Mvc.ViewEngineCollection.InsertItem(System.Int32,System.Web.Mvc.IViewEngine)">
+ <summary>
+ Inserts an element into the <see cref="T:System.Collections.ObjectModel.Collection`1"/> at the specified index.
+ </summary>
+ <param name="index">The zero-based index at which <paramref name="item"/> should be inserted.</param>
+ <param name="item">The object to insert. The value can be null for reference types.</param>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="index"/> is less than zero.
+ -or-
+ <paramref name="index"/> is greater than <see cref="P:System.Collections.ObjectModel.Collection`1.Count"/>.
+ </exception>
+ </member>
+ <member name="M:System.Web.Mvc.ViewEngineCollection.SetItem(System.Int32,System.Web.Mvc.IViewEngine)">
+ <summary>
+ Replaces the element at the specified index.
+ </summary>
+ <param name="index">The zero-based index of the element to replace.</param>
+ <param name="item">The new value for the element at the specified index. The value can be null for reference types.</param>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="index"/> is less than zero.
+ -or-
+ <paramref name="index"/> is greater than <see cref="P:System.Collections.ObjectModel.Collection`1.Count"/>.
+ </exception>
+ </member>
+ <member name="M:System.Web.Mvc.ViewEngineCollection.FindPartialView(System.Web.Mvc.ControllerContext,System.String)">
+ <summary>
+ Finds the partial view.
+ </summary>
+ <param name="controllerContext">The controller context.</param>
+ <param name="partialViewName">Name of the partial view.</param>
+ <returns>The partial view.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.ViewEngineCollection.FindView(System.Web.Mvc.ControllerContext,System.String,System.String)">
+ <summary>
+ Finds the view.
+ </summary>
+ <param name="controllerContext">The controller context.</param>
+ <param name="viewName">Name of the view.</param>
+ <param name="masterName">Name of the master.</param>
+ <returns>The view.</returns>
+ </member>
+ <member name="T:System.Web.Mvc.SelectList">
+ <summary>
+ Represents a list on which one item can be selected.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.SelectList.#ctor(System.Collections.IEnumerable)">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.SelectList"/> class.
+ </summary>
+ <param name="items">The items.</param>
+ </member>
+ <member name="M:System.Web.Mvc.SelectList.#ctor(System.Collections.IEnumerable,System.Object)">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.SelectList"/> class.
+ </summary>
+ <param name="items">The items.</param>
+ <param name="selectedValue">The selected value.</param>
+ </member>
+ <member name="M:System.Web.Mvc.SelectList.#ctor(System.Collections.IEnumerable,System.String,System.String)">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.SelectList"/> class.
+ </summary>
+ <param name="items">The items.</param>
+ <param name="dataValueField">The data value field.</param>
+ <param name="dataTextField">The data text field.</param>
+ </member>
+ <member name="M:System.Web.Mvc.SelectList.#ctor(System.Collections.IEnumerable,System.String,System.String,System.Object)">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.SelectList"/> class.
+ </summary>
+ <param name="items">The items.</param>
+ <param name="dataValueField">The data value field.</param>
+ <param name="dataTextField">The data text field.</param>
+ <param name="selectedValue">The selected value.</param>
+ </member>
+ <member name="P:System.Web.Mvc.SelectList.SelectedValue">
+ <summary>
+ Gets the selected value.
+ </summary>
+ <value>The selected value.</value>
+ </member>
+ <member name="T:System.Web.Mvc.RouteCollectionExtensions">
+ <summary>
+ Extends a RouteCollection object.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.RouteCollectionExtensions.IgnoreRoute(System.Web.Routing.RouteCollection,System.String)">
+ <summary>
+ Ignores the route.
+ </summary>
+ <param name="routes">The routes.</param>
+ <param name="url">The URL.</param>
+ </member>
+ <member name="M:System.Web.Mvc.RouteCollectionExtensions.IgnoreRoute(System.Web.Routing.RouteCollection,System.String,System.Object)">
+ <summary>
+ Ignores the route.
+ </summary>
+ <param name="routes">The routes.</param>
+ <param name="url">The URL.</param>
+ <param name="constraints">The constraints.</param>
+ </member>
+ <member name="M:System.Web.Mvc.RouteCollectionExtensions.MapRoute(System.Web.Routing.RouteCollection,System.String,System.String)">
+ <summary>
+ Maps the route.
+ </summary>
+ <param name="routes">The routes.</param>
+ <param name="name">The name.</param>
+ <param name="url">The URL.</param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Web.Mvc.RouteCollectionExtensions.MapRoute(System.Web.Routing.RouteCollection,System.String,System.String,System.Object)">
+ <summary>
+ Maps the route.
+ </summary>
+ <param name="routes">The routes.</param>
+ <param name="name">The name.</param>
+ <param name="url">The URL.</param>
+ <param name="defaults">The defaults.</param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Web.Mvc.RouteCollectionExtensions.MapRoute(System.Web.Routing.RouteCollection,System.String,System.String,System.Object,System.Object)">
+ <summary>
+ Maps the route.
+ </summary>
+ <param name="routes">The routes.</param>
+ <param name="name">The name.</param>
+ <param name="url">The URL.</param>
+ <param name="defaults">The defaults.</param>
+ <param name="constraints">The constraints.</param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Web.Mvc.RouteCollectionExtensions.MapRoute(System.Web.Routing.RouteCollection,System.String,System.String,System.String[])">
+ <summary>
+ Maps the route.
+ </summary>
+ <param name="routes">The routes.</param>
+ <param name="name">The name.</param>
+ <param name="url">The URL.</param>
+ <param name="namespaces">The namespaces.</param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Web.Mvc.RouteCollectionExtensions.MapRoute(System.Web.Routing.RouteCollection,System.String,System.String,System.Object,System.String[])">
+ <summary>
+ Maps the route.
+ </summary>
+ <param name="routes">The routes.</param>
+ <param name="name">The name.</param>
+ <param name="url">The URL.</param>
+ <param name="defaults">The defaults.</param>
+ <param name="namespaces">The namespaces.</param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Web.Mvc.RouteCollectionExtensions.MapRoute(System.Web.Routing.RouteCollection,System.String,System.String,System.Object,System.Object,System.String[])">
+ <summary>
+ Maps the route.
+ </summary>
+ <param name="routes">The routes.</param>
+ <param name="name">The name.</param>
+ <param name="url">The URL.</param>
+ <param name="defaults">The defaults.</param>
+ <param name="constraints">The constraints.</param>
+ <param name="namespaces">The namespaces.</param>
+ <returns></returns>
+ </member>
+ <member name="T:System.Web.Mvc.ModelState">
+ <summary>
+ Encapsulates the state of model binding to a property of an argument, or the argument itself, of an action method.
+ </summary>
+ </member>
+ <member name="P:System.Web.Mvc.ModelState.Value">
+ <summary>
+ Returns a <see cref="T:System.Web.Mvc.ValueProviderResult"/> which encapsulates the value which was attempted to be bound by model binding.
+ </summary>
+ <value>The value.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ModelState.Errors">
+ <summary>
+ Returns a <see cref="T:System.Web.Mvc.ModelErrorCollection"/> containing any errors that occurred during model binding.
+ </summary>
+ <value>The errors.</value>
+ </member>
+ <member name="T:System.Web.Mvc.ModelBinders">
+ <summary>
+ Provides global access to the model binders for the application.
+ </summary>
+ </member>
+ <member name="P:System.Web.Mvc.ModelBinders.Binders">
+ <summary>
+ Gets the model binders.
+ </summary>
+ <value>The model binders.</value>
+ </member>
+ <member name="T:System.Web.Mvc.Html.ValidationExtensions">
+ <summary>
+ Represents support for validating the input from an HTML form.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.Html.ValidationExtensions.ValidationMessage(System.Web.Mvc.HtmlHelper,System.String)">
+ <summary>
+ Displays a validation message if the specified field contains an error in the <see cref="T:System.Web.Mvc.ModelStateDictionary">ModelState</see>.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="modelName">The name of the property or model object being validated.</param>
+ <returns>
+ An empty string if valid, otherwise a span with an error message.
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.ValidationExtensions.ValidationMessage(System.Web.Mvc.HtmlHelper,System.String,System.Object)">
+ <summary>
+ Displays a validation message if the specified field contains an error in the <see cref="T:System.Web.Mvc.ModelStateDictionary">ModelState</see>.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="modelName">The name of the property or model object being validated.</param>
+ <param name="htmlAttributes">An object containing the HTML attributes for the element. The attributes are retrieved via reflection by examining the properties of the object. Typically created using object initializer syntax.</param>
+ <returns>
+ An empty string if valid, otherwise a span with an error message.
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.ValidationExtensions.ValidationMessage(System.Web.Mvc.HtmlHelper,System.String,System.String)">
+ <summary>
+ Displays a validation message if the specified field contains an error in the <see cref="T:System.Web.Mvc.ModelStateDictionary">ModelState</see>.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="modelName">The name of the property or model object being validated.</param>
+ <param name="validationMessage">The message to display if the specified field is in error.</param>
+ <returns>
+ An empty string if valid, otherwise a span with an error message.
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.ValidationExtensions.ValidationMessage(System.Web.Mvc.HtmlHelper,System.String,System.String,System.Object)">
+ <summary>
+ Displays a validation message if the specified field contains an error in the <see cref="T:System.Web.Mvc.ModelStateDictionary">ModelState</see>.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="modelName">The name of the property or model object being validated.</param>
+ <param name="validationMessage">The message to display if the specified field is in error.</param>
+ <param name="htmlAttributes">An object containing the HTML attributes for the element. The attributes are retrieved via reflection by examining the properties of the object. Typically created using object initializer syntax.</param>
+ <returns>
+ An empty string if valid, otherwise a span with an error message.
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.ValidationExtensions.ValidationMessage(System.Web.Mvc.HtmlHelper,System.String,System.Collections.Generic.IDictionary{System.String,System.Object})">
+ <summary>
+ Displays a validation message if the specified field contains an error in the <see cref="T:System.Web.Mvc.ModelStateDictionary">ModelState</see>.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="modelName">The name of the property or model object being validated.</param>
+ <param name="htmlAttributes">An object containing the HTML attributes for the element.</param>
+ <returns>
+ An empty string if valid, otherwise a span with an error message.
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.ValidationExtensions.ValidationMessage(System.Web.Mvc.HtmlHelper,System.String,System.String,System.Collections.Generic.IDictionary{System.String,System.Object})">
+ <summary>
+ Displays a validation message if the specified field contains an error in the <see cref="T:System.Web.Mvc.ModelStateDictionary">ModelState</see>.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="modelName">The name of the property or model object being validated.</param>
+ <param name="validationMessage">The message to display if the specified field is in error.</param>
+ <param name="htmlAttributes">An object containing the HTML attributes for the element.</param>
+ <returns>
+ An empty string if valid, otherwise a span with an error message.
+ </returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.ValidationExtensions.ValidationSummary(System.Web.Mvc.HtmlHelper)">
+ <summary>
+ Returns an unordered list [ul] of validation messages within the <see cref="T:System.Web.Mvc.ModelStateDictionary">ModelState</see>.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.ValidationExtensions.ValidationSummary(System.Web.Mvc.HtmlHelper,System.String)">
+ <summary>
+ Returns an unordered list [ul] of validation messages within the <see cref="T:System.Web.Mvc.ModelStateDictionary">ModelState</see>.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="message">The message to display if the specified field is in error.</param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.ValidationExtensions.ValidationSummary(System.Web.Mvc.HtmlHelper,System.String,System.Object)">
+ <summary>
+ Returns an unordered list [ul] of validation messages within the <see cref="T:System.Web.Mvc.ModelStateDictionary">ModelState</see>.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="message">The message to display if the specified field is in error.</param>
+ <param name="htmlAttributes">An object containing the HTML attributes for the element. The attributes are retrieved via reflection by examining the properties of the object. Typically created using object initializer syntax.</param>
+ <returns></returns>
+ </member>
+ <member name="M:System.Web.Mvc.Html.ValidationExtensions.ValidationSummary(System.Web.Mvc.HtmlHelper,System.String,System.Collections.Generic.IDictionary{System.String,System.Object})">
+ <summary>
+ Returns an unordered list [ul] of validation messages within the <see cref="T:System.Web.Mvc.ModelStateDictionary">ModelState</see>.
+ </summary>
+ <param name="htmlHelper">The HTML helper.</param>
+ <param name="message">The message to display if the specified field is in error.</param>
+ <param name="htmlAttributes">An object containing the HTML attributes for the element.</param>
+ <returns></returns>
+ </member>
+ <member name="P:System.Web.Mvc.Html.ValidationExtensions.ResourceClassKey">
+ <summary>
+ The name of the resource class used to localize validation messages.
+ </summary>
+ </member>
+ <member name="T:System.Web.Mvc.ValueProviderResult">
+ <summary>
+ Represents the result of an attempt to bind a supplied value (from a form post, query string, etc) to
+ a property of an argument to an action method or to the argument itself.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.ValueProviderResult.#ctor">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.ValueProviderResult"/> class.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.ValueProviderResult.#ctor(System.Object,System.String,System.Globalization.CultureInfo)">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.ValueProviderResult"/> class with the specified
+ raw value, attempted value, and <see cref="T:System.Globalization.CultureInfo"/>.
+ </summary>
+ <param name="rawValue">The raw value.</param>
+ <param name="attemptedValue">The attempted value.</param>
+ <param name="culture">The culture.</param>
+ </member>
+ <member name="M:System.Web.Mvc.ValueProviderResult.ConvertTo(System.Type)">
+ <summary>
+ Converts the value encapsulated by this result to the specified type.
+ </summary>
+ <param name="type">The target type.</param>
+ <returns>The converted value.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.ValueProviderResult.ConvertTo(System.Type,System.Globalization.CultureInfo)">
+ <summary>
+ Converts the value encapsulated by this result to the specified type.
+ </summary>
+ <param name="type">The target type.</param>
+ <param name="culture">The culture to use in the conversion.</param>
+ <returns>The converted value.</returns>
+ </member>
+ <member name="P:System.Web.Mvc.ValueProviderResult.AttemptedValue">
+ <summary>
+ The raw value converted to a string for display purposes.
+ </summary>
+ <value>The attempted value.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ValueProviderResult.Culture">
+ <summary>
+ Gets or sets the culture.
+ </summary>
+ <value>The culture.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ValueProviderResult.RawValue">
+ <summary>
+ The raw value supplied by the value provider.
+ </summary>
+ <value>The raw value.</value>
+ </member>
+ <member name="T:System.Web.Mvc.ModelBindingContext">
+ <summary>
+ Provides the context within which a model binder functions.
+ </summary>
+ </member>
+ <member name="P:System.Web.Mvc.ModelBindingContext.FallbackToEmptyPrefix">
+ <summary>
+ Gets or sets a value indicating whether [fallback to empty prefix].
+ </summary>
+ <value>
+ <c>true</c> if [fallback to empty prefix]; otherwise, <c>false</c>.
+ </value>
+ </member>
+ <member name="P:System.Web.Mvc.ModelBindingContext.Model">
+ <summary>
+ Gets or sets the model.
+ </summary>
+ <value>The model.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ModelBindingContext.ModelName">
+ <summary>
+ Gets or sets the name of the model.
+ </summary>
+ <value>The name of the model.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ModelBindingContext.ModelState">
+ <summary>
+ Gets or sets the state of the model.
+ </summary>
+ <value>The state of the model.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ModelBindingContext.ModelType">
+ <summary>
+ Gets or sets the type of the model.
+ </summary>
+ <value>The type of the model.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ModelBindingContext.PropertyFilter">
+ <summary>
+ Gets or sets the property filter.
+ </summary>
+ <value>The property filter.</value>
+ </member>
+ <member name="P:System.Web.Mvc.ModelBindingContext.ValueProvider">
+ <summary>
+ Gets or sets the value provider.
+ </summary>
+ <value>The value provider.</value>
+ </member>
+ <member name="T:System.Web.Mvc.ActionMethodDispatcherCache">
+ <summary>
+ Caches a sequence of calls to action methods.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.ActionMethodDispatcherCache.#ctor">
+ <summary>
+ Initializes a new instance of the <see cref="T:System.Web.Mvc.ActionMethodDispatcherCache"/> class.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.ActionMethodDispatcherCache.GetDispatcher(System.Reflection.MethodInfo)">
+ <summary>
+ Gets the dispatcher.
+ </summary>
+ <param name="methodInfo">The method info.</param>
+ <returns>A reference to the action method dispatcher.</returns>
+ </member>
+ <member name="T:System.Web.Mvc.AuthorizeAttribute">
+ <summary>
+ When applied to an action method, restricts access of callers to the action method.
+ </summary>
+ </member>
+ <member name="M:System.Web.Mvc.AuthorizeAttribute.AuthorizeCore(System.Web.HttpContextBase)">
+ <summary>
+ Authorizes the core.
+ </summary>
+ <param name="httpContext">The HTTP context.</param>
+ <returns><c>true</c> if authorized; otherwise, <c>false</c>.</returns>
+ </member>
+ <member name="M:System.Web.Mvc.AuthorizeAttribute.OnAuthorization(System.Web.Mvc.AuthorizationContext)">
+ <summary>
+ Called when [authorization].
+ </summary>
+ <param name="filterContext">The filter context.</param>
+ </member>
+ <member name="M:System.Web.Mvc.AuthorizeAttribute.OnCacheAuthorization(System.Web.HttpContextBase)">
+ <summary>
+ Called when the caching module requests authorization.
+ </summary>
+ <param name="httpContext">The HTTP context.</param>
+ <returns>A refernce to the validation status.</returns>
+ </member>
+ <member name="P:System.Web.Mvc.AuthorizeAttribute.Roles">
+ <summary>
+ Gets or sets the roles.
+ </summary>
+ <value>The roles.</value>
+ </member>
+ <member name="P:System.Web.Mvc.AuthorizeAttribute.Users">
+ <summary>
+ Gets or sets the users.
+ </summary>
+ <value>The users.</value>
+ </member>
+ </members>
+</doc>
third.party/lib/app/gorilla/gorilla.commons.utility.dll
Binary file
.build.swp
Binary file