mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-11-28 09:22:55 +08:00
updated dll to mvc5
This commit is contained in:
Binary file not shown.
@@ -157,7 +157,7 @@
|
||||
<returns>The hash value for <paramref name="input" /> as a string of hexadecimal characters.</returns>
|
||||
<param name="input">The data to provide a hash value for.</param>
|
||||
<param name="algorithm">The algorithm that is used to generate the hash value. The default is "sha256".</param>
|
||||
<exception cref="System.ArgumentNullException">
|
||||
<exception cref="T:System.ArgumentNullException">
|
||||
<paramref name="input" /> is null.</exception>
|
||||
</member>
|
||||
<member name="M:System.Web.Helpers.Crypto.Hash(System.String,System.String)">
|
||||
@@ -165,28 +165,28 @@
|
||||
<returns>The hash value for <paramref name="input" /> as a string of hexadecimal characters.</returns>
|
||||
<param name="input">The data to provide a hash value for.</param>
|
||||
<param name="algorithm">The algorithm that is used to generate the hash value. The default is "sha256".</param>
|
||||
<exception cref="System.ArgumentNullException">
|
||||
<exception cref="T:System.ArgumentNullException">
|
||||
<paramref name="input" /> is null.</exception>
|
||||
</member>
|
||||
<member name="M:System.Web.Helpers.Crypto.HashPassword(System.String)">
|
||||
<summary>Returns an RFC 2898 hash value for the specified password.</summary>
|
||||
<returns>The hash value for <paramref name="password" /> as a base-64-encoded string.</returns>
|
||||
<param name="password">The password to generate a hash value for.</param>
|
||||
<exception cref="System.ArgumentNullException">
|
||||
<exception cref="T:System.ArgumentNullException">
|
||||
<paramref name="password" /> is null.</exception>
|
||||
</member>
|
||||
<member name="M:System.Web.Helpers.Crypto.SHA1(System.String)">
|
||||
<summary>Returns a SHA-1 hash value for the specified string.</summary>
|
||||
<returns>The SHA-1 hash value for <paramref name="input" /> as a string of hexadecimal characters.</returns>
|
||||
<param name="input">The data to provide a hash value for.</param>
|
||||
<exception cref="System.ArgumentNullException">
|
||||
<exception cref="T:System.ArgumentNullException">
|
||||
<paramref name="input" /> is null.</exception>
|
||||
</member>
|
||||
<member name="M:System.Web.Helpers.Crypto.SHA256(System.String)">
|
||||
<summary>Returns a SHA-256 hash value for the specified string.</summary>
|
||||
<returns>The SHA-256 hash value for <paramref name="input" /> as a string of hexadecimal characters.</returns>
|
||||
<param name="input">The data to provide a hash value for.</param>
|
||||
<exception cref="System.ArgumentNullException">
|
||||
<exception cref="T:System.ArgumentNullException">
|
||||
<paramref name="input" /> is null.</exception>
|
||||
</member>
|
||||
<member name="M:System.Web.Helpers.Crypto.VerifyHashedPassword(System.String,System.String)">
|
||||
@@ -194,7 +194,7 @@
|
||||
<returns>true if the hash value is a cryptographic match for the password; otherwise, false.</returns>
|
||||
<param name="hashedPassword">The previously-computed RFC 2898 hash value as a base-64-encoded string.</param>
|
||||
<param name="password">The plaintext password to cryptographically compare with <paramref name="hashedPassword" />.</param>
|
||||
<exception cref="System.ArgumentNullException">
|
||||
<exception cref="T:System.ArgumentNullException">
|
||||
<paramref name="hashedPassword" /> or <paramref name="password" /> is null.</exception>
|
||||
</member>
|
||||
<member name="T:System.Web.Helpers.DynamicJsonArray">
|
||||
@@ -211,7 +211,6 @@
|
||||
<member name="P:System.Web.Helpers.DynamicJsonArray.Item(System.Int32)">
|
||||
<summary>Returns the value at the specified index in the <see cref="T:System.Web.Helpers.DynamicJsonArray" /> instance.</summary>
|
||||
<returns>The value at the specified index.</returns>
|
||||
<param name="index">The zero-based index of the value in the JSON array to return.</param>
|
||||
</member>
|
||||
<member name="P:System.Web.Helpers.DynamicJsonArray.Length">
|
||||
<summary>Returns the number of elements in the <see cref="T:System.Web.Helpers.DynamicJsonArray" /> instance.</summary>
|
||||
@@ -388,6 +387,10 @@
|
||||
<param name="sortFieldName">The name of the query-string field that is used to specify the name of the data column that the <see cref="T:System.Web.Helpers.WebGrid" /> instance is sorted by.</param>
|
||||
<param name="sortDirectionFieldName">The name of the query-string field that is used to specify the direction in which the <see cref="T:System.Web.Helpers.WebGrid" /> instance is sorted.</param>
|
||||
</member>
|
||||
<member name="M:System.Web.Helpers.WebGrid.AddSorter``2(System.String,System.Linq.Expressions.Expression{System.Func{``0,``1}})">
|
||||
<typeparam name="TElement"></typeparam>
|
||||
<typeparam name="TProperty"></typeparam>
|
||||
</member>
|
||||
<member name="P:System.Web.Helpers.WebGrid.AjaxUpdateCallback">
|
||||
<summary>Gets the name of the JavaScript function to call after the HTML element that is associated with the <see cref="T:System.Web.Helpers.WebGrid" /> instance has been updated in response to an Ajax update request.</summary>
|
||||
<returns>The name of the function.</returns>
|
||||
@@ -408,7 +411,7 @@
|
||||
<summary>Gets a value that indicates whether the <see cref="T:System.Web.Helpers.WebGrid" /> instance supports sorting.</summary>
|
||||
<returns>true if the instance supports sorting; otherwise, false.</returns>
|
||||
</member>
|
||||
<member name="M:System.Web.Helpers.WebGrid.Column(System.String,System.String,System.Func`2,System.Boolean,System.Object)">
|
||||
<member name="M:System.Web.Helpers.WebGrid.Column(System.String,System.String,System.Func{System.Object,System.Object},System.String,System.Boolean)">
|
||||
<summary>Creates a new <see cref="T:System.Web.Helpers.WebGridColumn" /> instance.</summary>
|
||||
<returns>The new column.</returns>
|
||||
<param name="columnName">The name of the data column to associate with the <see cref="T:System.Web.Helpers.WebGridColumn" /> instance.</param>
|
||||
@@ -535,7 +538,7 @@
|
||||
<summary>Gets the full name of the query-string field that is used to specify the name of the data column that the <see cref="T:System.Web.Helpers.WebGrid" /> instance is sorted by.</summary>
|
||||
<returns>The full name of the query-string field that is used to specify the name of the data column that the grid is sorted by.</returns>
|
||||
</member>
|
||||
<member name="M:System.Web.Helpers.WebGrid.Table(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.Boolean,System.Boolean,System.String,System.Collections.Generic.IEnumerable{System.Web.Helpers.WebGridColumn},System.Collections.Generic.IEnumerable{System.String},System.Func`2,System.Boolean)">
|
||||
<member name="M:System.Web.Helpers.WebGrid.Table(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.Boolean,System.Boolean,System.String,System.Collections.Generic.IEnumerable{System.Web.Helpers.WebGridColumn},System.Collections.Generic.IEnumerable{System.String},System.Func{System.Object,System.Object},System.Object)">
|
||||
<summary>Returns the HTML markup that is used to render the <see cref="T:System.Web.Helpers.WebGrid" /> instance.</summary>
|
||||
<returns>The HTML markup that represents the fully-populated <see cref="T:System.Web.Helpers.WebGrid" /> instance.</returns>
|
||||
<param name="tableStyle">The name of the CSS class that is used to style the whole table.</param>
|
||||
@@ -584,19 +587,19 @@
|
||||
<returns>The CSS class attribute that is applied to cells that are associated with the column.</returns>
|
||||
</member>
|
||||
<member name="T:System.Web.Helpers.WebGridPagerModes">
|
||||
<summary>Specifies flags that describe the methods that are provided for moving between the pages of a <see cref="T:System.Web.Helpers.WebGrid" /> instance.</summary>
|
||||
<summary>Specifies flags that describe the methods that are provided for moving between the pages of a <see cref="T:System.Web.Helpers.WebGrid" /> instance.This enumeration has a <see cref="T:System.FlagsAttribute" /> attribute that allows a bitwise combination of its member values.</summary>
|
||||
</member>
|
||||
<member name="F:System.Web.Helpers.WebGridPagerModes.Numeric">
|
||||
<summary>Indicates that methods for moving to a nearby <see cref="F:System.Web.Helpers.WebGrid" /> page by using a page number are provided.</summary>
|
||||
</member>
|
||||
<member name="F:System.Web.Helpers.WebGridPagerModes.NextPrevious">
|
||||
<summary>Indicates that methods for moving to the next or previous <see cref="F:System.Web.Helpers.WebGrid" /> page are provided.</summary>
|
||||
<member name="F:System.Web.Helpers.WebGridPagerModes.All">
|
||||
<summary>Indicates that all methods for moving between <see cref="T:System.Web.Helpers.WebGrid" /> pages are provided.</summary>
|
||||
</member>
|
||||
<member name="F:System.Web.Helpers.WebGridPagerModes.FirstLast">
|
||||
<summary>Indicates that methods for moving directly to the first or last <see cref="F:System.Web.Helpers.WebGrid" /> page are provided.</summary>
|
||||
</member>
|
||||
<member name="F:System.Web.Helpers.WebGridPagerModes.All">
|
||||
<summary>Indicates that all methods for moving between <see cref="T:System.Web.Helpers.WebGrid" /> pages are provided.</summary>
|
||||
<member name="F:System.Web.Helpers.WebGridPagerModes.NextPrevious">
|
||||
<summary>Indicates that methods for moving to the next or previous <see cref="F:System.Web.Helpers.WebGrid" /> page are provided.</summary>
|
||||
</member>
|
||||
<member name="F:System.Web.Helpers.WebGridPagerModes.Numeric">
|
||||
<summary>Indicates that methods for moving to a nearby <see cref="F:System.Web.Helpers.WebGrid" /> page by using a page number are provided.</summary>
|
||||
</member>
|
||||
<member name="T:System.Web.Helpers.WebGridRow">
|
||||
<summary>Represents a row in a <see cref="T:System.Web.Helpers.WebGrid" /> instance.</summary>
|
||||
@@ -632,7 +635,7 @@
|
||||
<returns>The specified value.</returns>
|
||||
<param name="name">The name of the value in the row to return.</param>
|
||||
<exception cref="T:System.ArgumentException">
|
||||
<paramref name="name" /> is null or empty.</exception>
|
||||
<paramref name="name" /> is Nothing or empty.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">
|
||||
<paramref name="name" /> specifies a value that does not exist.</exception>
|
||||
</member>
|
||||
|
||||
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@@ -11,31 +11,50 @@
|
||||
<summary>Registers pre-application start code for Web Pages deployment.</summary>
|
||||
</member>
|
||||
<member name="T:System.Web.WebPages.Deployment.WebPagesDeployment">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Provides methods that are used to get deployment information about the Web application.</summary>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.Deployment.WebPagesDeployment.GetAssemblyPath(System.Version)">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the assembly path for the Web Pages deployment.</summary>
|
||||
<returns>The assembly path for the Web Pages deployment.</returns>
|
||||
<param name="version">The Web Pages version.</param>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.Deployment.WebPagesDeployment.GetExplicitWebPagesVersion(System.String)">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the Web Pages version from the given binary path.</summary>
|
||||
<returns>The Web Pages version.</returns>
|
||||
<param name="path">The binary path for the Web Pages.</param>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.Deployment.WebPagesDeployment.GetIncompatibleDependencies(System.String)">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the assembly references from the given path regardless of the Web Pages version.</summary>
|
||||
<returns>The dictionary containing the assembly references of the Web Pages and its version.</returns>
|
||||
<param name="appPath">The path to the Web Pages application.</param>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.Deployment.WebPagesDeployment.GetMaxVersion">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the maximum version of the Web Pages loaded assemblies.</summary>
|
||||
<returns>The maximum version of the Web Pages loaded assemblies.</returns>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.Deployment.WebPagesDeployment.GetVersion(System.String)">
|
||||
<summary>Gets the Web Pages version from the given path.</summary>
|
||||
<returns>The Web Pages version.</returns>
|
||||
<param name="path">The path of the root directory for the application.</param>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.Deployment.WebPagesDeployment.GetVersionWithoutEnabledCheck(System.String)">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the Web Pages version using the configuration settings with the specified path.</summary>
|
||||
<returns>The Web Pages version.</returns>
|
||||
<param name="path">The path to the application settings.</param>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.Deployment.WebPagesDeployment.GetWebPagesAssemblies">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns the assemblies for this Web Pages deployment.</summary>
|
||||
<returns>A list containing the assemblies for this Web Pages deployment.</returns>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.Deployment.WebPagesDeployment.IsEnabled(System.String)">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates whether the Web Pages deployment is enabled.</summary>
|
||||
<returns>true if the Web Pages deployment is enabled; otherwise, false.</returns>
|
||||
<param name="path">The path to the Web Pages deployment.</param>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.Deployment.WebPagesDeployment.IsExplicitlyDisabled(System.String)">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates whether the Web Pages deployment is explicitly disabled.</summary>
|
||||
<returns>true if the Web Pages deployment is explicitly disabled; otherwise, false.</returns>
|
||||
<param name="path">The path to the Web Pages deployment.</param>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
Binary file not shown.
@@ -5,16 +5,20 @@
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:System.Web.WebPages.Razor.CompilingPathEventArgs">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the base class for the compiling path that contains event data.</summary>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.Razor.CompilingPathEventArgs.#ctor(System.String,System.Web.WebPages.Razor.WebPageRazorHost)">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.WebPages.Razor.CompilingPathEventArgs" /> class.</summary>
|
||||
<param name="virtualPath">The string of virtual path.</param>
|
||||
<param name="host">The host for the webpage razor.</param>
|
||||
</member>
|
||||
<member name="P:System.Web.WebPages.Razor.CompilingPathEventArgs.Host">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the host for the webpage razor.</summary>
|
||||
<returns>The host for the webpage razor.</returns>
|
||||
</member>
|
||||
<member name="P:System.Web.WebPages.Razor.CompilingPathEventArgs.VirtualPath">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the virtual path for the webpage.</summary>
|
||||
<returns>The virtual path for the webpage.</returns>
|
||||
</member>
|
||||
<member name="T:System.Web.WebPages.Razor.PreApplicationStartCode">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
@@ -23,155 +27,219 @@
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
</member>
|
||||
<member name="T:System.Web.WebPages.Razor.RazorBuildProvider">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents a build provider for Razor.</summary>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.Razor.RazorBuildProvider.#ctor">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.WebPages.Razor.RazorBuildProvider" /> class.</summary>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.Razor.RazorBuildProvider.AddVirtualPathDependency(System.String)">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Adds a virtual path dependency to the collection.</summary>
|
||||
<param name="dependency">A virtual path dependency to add.</param>
|
||||
</member>
|
||||
<member name="P:System.Web.WebPages.Razor.RazorBuildProvider.AssemblyBuilder">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the assembly builder for Razor environment.</summary>
|
||||
<returns>The assembly builder.</returns>
|
||||
</member>
|
||||
<member name="P:System.Web.WebPages.Razor.RazorBuildProvider.CodeCompilerType">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the compiler settings for Razor environment.</summary>
|
||||
</member>
|
||||
<member name="E:System.Web.WebPages.Razor.RazorBuildProvider.CodeGenerationCompleted">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Occurs when code generation is completed.</summary>
|
||||
</member>
|
||||
<member name="E:System.Web.WebPages.Razor.RazorBuildProvider.CodeGenerationStarted">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Occurs when code generation is started.</summary>
|
||||
</member>
|
||||
<member name="E:System.Web.WebPages.Razor.RazorBuildProvider.CompilingPath">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Occurs when compiling with a new virtual path.</summary>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.Razor.RazorBuildProvider.CreateHost">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates a Razor engine host instance base on web configuration.</summary>
|
||||
<returns>A Razor engine host instance.</returns>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.Razor.RazorBuildProvider.GenerateCode(System.Web.Compilation.AssemblyBuilder)">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Generates the code using the provided assembly builder.</summary>
|
||||
<param name="assemblyBuilder">The assembly builder.</param>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.Razor.RazorBuildProvider.GetGeneratedType(System.CodeDom.Compiler.CompilerResults)">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the type of the generated code.</summary>
|
||||
<returns>The type of the generated code.</returns>
|
||||
<param name="results">The results of the code compilation.</param>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.Razor.RazorBuildProvider.GetHostFromConfig">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates the Razor engine host instance based on the web configuration.</summary>
|
||||
<returns>The Razor engine host instance.</returns>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.Razor.RazorBuildProvider.InternalOpenReader">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Opens an internal text reader.</summary>
|
||||
<returns>An internal text reader.</returns>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.Razor.RazorBuildProvider.OnBeforeCompilePath(System.Web.WebPages.Razor.CompilingPathEventArgs)">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Raises the CompilingPath event.</summary>
|
||||
<param name="args">The data provided for the CompilingPath event.</param>
|
||||
</member>
|
||||
<member name="P:System.Web.WebPages.Razor.RazorBuildProvider.VirtualPath">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the virtual path of the source code.</summary>
|
||||
<returns>The virtual path of the source code.</returns>
|
||||
</member>
|
||||
<member name="P:System.Web.WebPages.Razor.RazorBuildProvider.VirtualPathDependencies">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the collection of virtual path for the dependencies.</summary>
|
||||
<returns>The collection of virtual path for the dependencies.</returns>
|
||||
</member>
|
||||
<member name="T:System.Web.WebPages.Razor.WebCodeRazorHost">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents a web code razor host for the web pages.</summary>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.Razor.WebCodeRazorHost.#ctor(System.String)">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.WebPages.Razor.WebCodeRazorHost" /> class.</summary>
|
||||
<param name="virtualPath">The virtual path.</param>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.Razor.WebCodeRazorHost.#ctor(System.String,System.String)">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.WebPages.Razor.WebCodeRazorHost" /> class.</summary>
|
||||
<param name="virtualPath">The virtual path.</param>
|
||||
<param name="physicalPath">The physical path.</param>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.Razor.WebCodeRazorHost.GetClassName(System.String)">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns the class name of this instance.</summary>
|
||||
<returns>The class name of this instance.</returns>
|
||||
<param name="virtualPath">The virtual path.</param>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.Razor.WebCodeRazorHost.PostProcessGeneratedCode(System.Web.Razor.Generator.CodeGeneratorContext)">
|
||||
<summary>Generates a post process code for the web code razor host.</summary>
|
||||
<param name="context">The generator code context.</param>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.Razor.WebCodeRazorHost.PostProcessGeneratedCode(System.Web.Razor.Generator.CodeGeneratorContext)"></member>
|
||||
<member name="T:System.Web.WebPages.Razor.WebPageRazorHost">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the razor hosts in a webpage.</summary>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.Razor.WebPageRazorHost.#ctor(System.String)">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.WebPages.Razor.WebPageRazorHost" /> class with the specified virtual file path.</summary>
|
||||
<param name="virtualPath">The virtual file path.</param>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.Razor.WebPageRazorHost.#ctor(System.String,System.String)">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.WebPages.Razor.WebPageRazorHost" /> class with the specified virtual and physical file path.</summary>
|
||||
<param name="virtualPath">The virtual file path.</param>
|
||||
<param name="physicalPath">The physical file path.</param>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.Razor.WebPageRazorHost.AddGlobalImport(System.String)">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Adds a global import on the webpage.</summary>
|
||||
<param name="ns">The notification service name.</param>
|
||||
</member>
|
||||
<member name="P:System.Web.WebPages.Razor.WebPageRazorHost.CodeLanguage">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the <see cref="T:System.Web.Razor.RazorCodeLanguage" />.</summary>
|
||||
<returns>The <see cref="T:System.Web.Razor.RazorCodeLanguage" />.</returns>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.Razor.WebPageRazorHost.CreateMarkupParser">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates a markup parser.</summary>
|
||||
<returns>A markup parser.</returns>
|
||||
</member>
|
||||
<member name="P:System.Web.WebPages.Razor.WebPageRazorHost.DefaultBaseClass">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets a value for the DefaultBaseClass.</summary>
|
||||
<returns>A value for the DefaultBaseClass.</returns>
|
||||
</member>
|
||||
<member name="P:System.Web.WebPages.Razor.WebPageRazorHost.DefaultClassName">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the name of the default class.</summary>
|
||||
<returns>The name of the default class.</returns>
|
||||
</member>
|
||||
<member name="P:System.Web.WebPages.Razor.WebPageRazorHost.DefaultDebugCompilation">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets a value that indicates whether the debug compilation is set to default.</summary>
|
||||
<returns>true if the debug compilation is set to default; otherwise, false.</returns>
|
||||
</member>
|
||||
<member name="P:System.Web.WebPages.Razor.WebPageRazorHost.DefaultPageBaseClass">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the base class of the default page.</summary>
|
||||
<returns>The base class of the default page.</returns>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.Razor.WebPageRazorHost.GetClassName(System.String)">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Retrieves the name of the class to which the specified webpage belongs.</summary>
|
||||
<returns>The name of the class to which the specified webpage belongs.</returns>
|
||||
<param name="virtualPath">The virtual file path.</param>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.Razor.WebPageRazorHost.GetCodeLanguage">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the code language specified in the webpage.</summary>
|
||||
<returns>The code language specified in the webpage.</returns>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.Razor.WebPageRazorHost.GetGlobalImports">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the global imports for the webpage.</summary>
|
||||
<returns>The global imports for the webpage.</returns>
|
||||
</member>
|
||||
<member name="P:System.Web.WebPages.Razor.WebPageRazorHost.InstrumentedSourceFilePath">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the file path of the instrumental source.</summary>
|
||||
<returns>The file path of the instrumental source.</returns>
|
||||
</member>
|
||||
<member name="P:System.Web.WebPages.Razor.WebPageRazorHost.IsSpecialPage">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets a value that indicates whether the webpage is a special page.</summary>
|
||||
<returns>true if the webpage is a special page; otherwise, false.</returns>
|
||||
</member>
|
||||
<member name="P:System.Web.WebPages.Razor.WebPageRazorHost.PhysicalPath">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the physical file system path of the razor host.</summary>
|
||||
<returns>They physical file system path of the razor host.</returns>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.Razor.WebPageRazorHost.PostProcessGeneratedCode(System.Web.Razor.Generator.CodeGeneratorContext)">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the generated code after the process.</summary>
|
||||
<param name="context">The <see cref="T:System.Web.Razor.Generator.CodeGeneratorContext" />.</param>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.Razor.WebPageRazorHost.RegisterSpecialFile(System.String,System.String)">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Registers the special file with the specified file name and base type name.</summary>
|
||||
<param name="fileName">The file name.</param>
|
||||
<param name="baseTypeName">The base type name.</param>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.Razor.WebPageRazorHost.RegisterSpecialFile(System.String,System.Type)">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Registers the special file with the specified file name and base type.</summary>
|
||||
<param name="fileName">The file name.</param>
|
||||
<param name="baseType">The type of base file.</param>
|
||||
</member>
|
||||
<member name="P:System.Web.WebPages.Razor.WebPageRazorHost.VirtualPath">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the virtual file path.</summary>
|
||||
<returns>The virtual file path.</returns>
|
||||
</member>
|
||||
<member name="T:System.Web.WebPages.Razor.WebRazorHostFactory">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates instances of the host files.</summary>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.Razor.WebRazorHostFactory.#ctor">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.WebPages.Razor.WebRazorHostFactory" /> class.</summary>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.Razor.WebRazorHostFactory.ApplyConfigurationToHost(System.Web.WebPages.Razor.Configuration.RazorPagesSection,System.Web.WebPages.Razor.WebPageRazorHost)">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Loads the service description information from the configuration file and applies it to the host.</summary>
|
||||
<param name="config">The configuration.</param>
|
||||
<param name="host">The webpage razor host.</param>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.Razor.WebRazorHostFactory.CreateDefaultHost(System.String)">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates a default host with the specified virtual path.</summary>
|
||||
<returns>A default host.</returns>
|
||||
<param name="virtualPath">The virtual path of the file.</param>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.Razor.WebRazorHostFactory.CreateDefaultHost(System.String,System.String)">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates a default host with the specified virtual and physical path.</summary>
|
||||
<returns>A default host.</returns>
|
||||
<param name="virtualPath">The virtual path of the file.</param>
|
||||
<param name="physicalPath">The physical file system path.</param>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.Razor.WebRazorHostFactory.CreateHost(System.String,System.String)">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates a Razor host.</summary>
|
||||
<returns>A razor host.</returns>
|
||||
<param name="virtualPath">The virtual path to the target file.</param>
|
||||
<param name="physicalPath">The physical path to the target file.</param>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.Razor.WebRazorHostFactory.CreateHostFromConfig(System.String)">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates a host from the configuration.</summary>
|
||||
<returns>A host from the configuration.</returns>
|
||||
<param name="virtualPath">The virtual path to the target file.</param>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.Razor.WebRazorHostFactory.CreateHostFromConfig(System.String,System.String)">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates a host from the configuration.</summary>
|
||||
<returns>A host from the configuration.</returns>
|
||||
<param name="virtualPath">The virtual path of the file.</param>
|
||||
<param name="physicalPath">The physical file system path.</param>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.Razor.WebRazorHostFactory.CreateHostFromConfig(System.Web.WebPages.Razor.Configuration.RazorWebSectionGroup,System.String)">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates a host from the configuration.</summary>
|
||||
<returns>A host from the configuration.</returns>
|
||||
<param name="config">The configuration.</param>
|
||||
<param name="virtualPath">The virtual path of the file.</param>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.Razor.WebRazorHostFactory.CreateHostFromConfig(System.Web.WebPages.Razor.Configuration.RazorWebSectionGroup,System.String,System.String)">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Creates a host from the configuration.</summary>
|
||||
<returns>A host from the configuration.</returns>
|
||||
<param name="config">The configuration.</param>
|
||||
<param name="virtualPath">The virtual path of the file.</param>
|
||||
<param name="physicalPath">The physical file system path.</param>
|
||||
</member>
|
||||
<member name="T:System.Web.WebPages.Razor.Configuration.HostSection">
|
||||
<summary>Provides configuration system support for the host configuration section.</summary>
|
||||
|
||||
Binary file not shown.
@@ -22,13 +22,22 @@
|
||||
<exception cref="T:System.ArgumentNullException">
|
||||
<paramref name="httpContext" /> is null.</exception>
|
||||
</member>
|
||||
<member name="M:System.Web.Helpers.AntiForgery.GetTokens(System.String,System.String@,System.String@)"></member>
|
||||
<member name="M:System.Web.Helpers.AntiForgery.GetTokens(System.String,System.String@,System.String@)">
|
||||
<summary>Gets the search tokens.</summary>
|
||||
<param name="oldCookieToken">The previous cookie token.</param>
|
||||
<param name="newCookieToken">The new cookie token.</param>
|
||||
<param name="formToken">The form of the token.</param>
|
||||
</member>
|
||||
<member name="M:System.Web.Helpers.AntiForgery.Validate">
|
||||
<summary>Validates that input data from an HTML form field comes from the user who submitted the data.</summary>
|
||||
<exception cref="T:System.ArgumentException">The current <see cref="T:System.Web.HttpContext" /> value is null.</exception>
|
||||
<exception cref="T:System.Web.Helpers.HttpAntiForgeryException">The HTTP cookie token that accompanies a valid request is missing-or-The form token is missing.-or-The form token value does not match the cookie token value.-or-The form token value does not match the cookie token value.</exception>
|
||||
</member>
|
||||
<member name="M:System.Web.Helpers.AntiForgery.Validate(System.String,System.String)"></member>
|
||||
<member name="M:System.Web.Helpers.AntiForgery.Validate(System.String,System.String)">
|
||||
<summary>Validates that input data from an HTML form field comes from the user who submitted the data.</summary>
|
||||
<param name="cookieToken">The cookie token value.</param>
|
||||
<param name="formToken">The token form.</param>
|
||||
</member>
|
||||
<member name="M:System.Web.Helpers.AntiForgery.Validate(System.Web.HttpContextBase,System.String)">
|
||||
<summary>Validates that input data from an HTML form field comes from the user who submitted the data and lets callers specify additional validation details.</summary>
|
||||
<param name="httpContext">The HTTP context data for a request.</param>
|
||||
@@ -83,7 +92,6 @@
|
||||
<member name="P:System.Web.Helpers.UnvalidatedRequestValues.Item(System.String)">
|
||||
<summary>Gets the specified unvalidated object from the collection of posted values in the <see cref="T:System.Web.HttpRequest" /> object.</summary>
|
||||
<returns>The specified member, or null if the specified item is not found.</returns>
|
||||
<param name="key">The name of the collection member to get.</param>
|
||||
</member>
|
||||
<member name="P:System.Web.Helpers.UnvalidatedRequestValues.QueryString">
|
||||
<summary>Gets a collection of unvalidated query-string values.</summary>
|
||||
@@ -118,13 +126,14 @@
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
</member>
|
||||
<member name="M:System.Web.Mvc.HttpAntiForgeryException.#ctor">
|
||||
<summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.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.String)">
|
||||
<summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Initializes a new instance of the <see cref="T:System.Web.Mvc.HttpAntiForgeryException" /> class.</summary>
|
||||
<param name="message">The containing message.</param>
|
||||
</member>
|
||||
<member name="M:System.Web.Mvc.HttpAntiForgeryException.#ctor(System.String,System.Exception)">
|
||||
<summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code. 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>
|
||||
@@ -149,19 +158,26 @@
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
</member>
|
||||
<member name="M:System.Web.Mvc.ModelClientValidationRegexRule.#ctor(System.String,System.String)">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code. Initializes a new instance of the <see cref="T:System.Web.Mvc.ModelClientValidationRegexRule" /> class.</summary>
|
||||
<param name="errorMessage">The exception message.</param>
|
||||
<param name="pattern">The pattern.</param>
|
||||
</member>
|
||||
<member name="T:System.Web.Mvc.ModelClientValidationRemoteRule">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>Represents the remote rule for the validation of the model client.</summary>
|
||||
</member>
|
||||
<member name="M:System.Web.Mvc.ModelClientValidationRemoteRule.#ctor(System.String,System.String,System.String,System.String)">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ModelClientValidationRemoteRule" /> class.</summary>
|
||||
<param name="errorMessage">The error message.</param>
|
||||
<param name="url">The URL of the rule.</param>
|
||||
<param name="httpMethod">The HTTP method.</param>
|
||||
<param name="additionalFields">The additional fields used.</param>
|
||||
</member>
|
||||
<member name="T:System.Web.Mvc.ModelClientValidationRequiredRule">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>Represents the required rule for the validation of the model client.</summary>
|
||||
</member>
|
||||
<member name="M:System.Web.Mvc.ModelClientValidationRequiredRule.#ctor(System.String)">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Web.Mvc.ModelClientValidationRequiredRule" /> class.</summary>
|
||||
<param name="errorMessage">The error message </param>
|
||||
</member>
|
||||
<member name="T:System.Web.Mvc.ModelClientValidationRule">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
@@ -179,10 +195,13 @@
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
</member>
|
||||
<member name="T:System.Web.Mvc.ModelClientValidationStringLengthRule">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents a length of the validation rule of the model client.</summary>
|
||||
</member>
|
||||
<member name="M:System.Web.Mvc.ModelClientValidationStringLengthRule.#ctor(System.String,System.Int32,System.Int32)">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.Mvc.ModelClientValidationStringLengthRule" /> class.</summary>
|
||||
<param name="errorMessage">The error message.</param>
|
||||
<param name="minimumLength">The minimum length of the validation rule.</param>
|
||||
<param name="maximumLength">The maximum length of the validation rule.</param>
|
||||
</member>
|
||||
<member name="T:System.Web.Mvc.TagBuilder">
|
||||
<summary>Contains classes and properties that are used to create HTML elements. This class is used to write helpers, such as those found in the <see cref="N:System.Web.Helpers" /> namespace.</summary>
|
||||
@@ -269,23 +288,25 @@
|
||||
<member name="T:System.Web.Mvc.TagRenderMode">
|
||||
<summary>Enumerates the modes that are available for rendering HTML tags.</summary>
|
||||
</member>
|
||||
<member name="F:System.Web.Mvc.TagRenderMode.Normal">
|
||||
<summary>Represents the mode for rendering normal text.</summary>
|
||||
</member>
|
||||
<member name="F:System.Web.Mvc.TagRenderMode.StartTag">
|
||||
<summary>Represents the mode for rendering an opening tag (for example, <tag>).</summary>
|
||||
</member>
|
||||
<member name="F:System.Web.Mvc.TagRenderMode.EndTag">
|
||||
<summary>Represents the mode for rendering a closing tag (for example, </tag>).</summary>
|
||||
</member>
|
||||
<member name="F:System.Web.Mvc.TagRenderMode.Normal">
|
||||
<summary>Represents the mode for rendering normal text.</summary>
|
||||
</member>
|
||||
<member name="F:System.Web.Mvc.TagRenderMode.SelfClosing">
|
||||
<summary>Represents the mode for rendering a self-closing tag (for example, <tag />).</summary>
|
||||
</member>
|
||||
<member name="F:System.Web.Mvc.TagRenderMode.StartTag">
|
||||
<summary>Represents the mode for rendering an opening tag (for example, <tag>).</summary>
|
||||
</member>
|
||||
<member name="T:System.Web.Mvc.UnobtrusiveValidationAttributesGenerator">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
</member>
|
||||
<member name="M:System.Web.Mvc.UnobtrusiveValidationAttributesGenerator.GetValidationAttributes(System.Collections.Generic.IEnumerable{System.Web.Mvc.ModelClientValidationRule},System.Collections.Generic.IDictionary{System.String,System.Object})">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the validation attributes from the structure or content of <see cref="T:System.Web.Mvc.UnobtrusiveValidationAttributesGenerator" />.</summary>
|
||||
<param name="clientRules">The <see cref="T:System.Web.Mvc.ModelClientValidationRule" /> to be implemented.</param>
|
||||
<param name="results">The result of the validation.</param>
|
||||
</member>
|
||||
<member name="T:System.Web.WebPages.ApplicationPart">
|
||||
<summary>Contains methods to register assemblies as application parts.</summary>
|
||||
@@ -361,25 +382,45 @@
|
||||
<param name="value">The object to write.</param>
|
||||
</member>
|
||||
<member name="T:System.Web.WebPages.AttributeValue">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>Stores the value for an attribute.This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.AttributeValue.#ctor(System.Web.WebPages.Instrumentation.PositionTagged{System.String},System.Web.WebPages.Instrumentation.PositionTagged{System.Object},System.Boolean)">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Web.WebPages.AttributeValue" /> class.This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<param name="prefix">The namespace prefix for the attribute.</param>
|
||||
<param name="value">The value for the attribute.</param>
|
||||
<param name="literal">true to indicate that the value is a literal value; otherwise, false.</param>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.AttributeValue.FromTuple(System.Tuple`3)">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<member name="M:System.Web.WebPages.AttributeValue.FromTuple(System.Tuple{System.Tuple{System.String,System.Int32},System.Tuple{System.Object,System.Int32},System.Boolean})">
|
||||
<summary>Creates an attribute value from the specified tuple object.</summary>
|
||||
<returns>The created attribute value.</returns>
|
||||
<param name="value">The tuple object from which to create from.</param>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.AttributeValue.FromTuple(System.Tuple{System.Tuple{System.String,System.Int32},System.Tuple{System.String,System.Int32},System.Boolean})">
|
||||
<summary>Creates an attribute value from the specified tuple object.</summary>
|
||||
<returns>The created attribute value.</returns>
|
||||
<param name="value">The tuple object from which to create from.</param>
|
||||
</member>
|
||||
<member name="P:System.Web.WebPages.AttributeValue.Literal">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>Gets or sets a value that indicates whether the value is a literal value.This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<returns>true if the value is a literal value; otherwise, false.</returns>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.AttributeValue.op_Implicit(System.Tuple`3)~System.Web.WebPages.AttributeValue">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<member name="M:System.Web.WebPages.AttributeValue.op_Implicit(System.Tuple{System.Tuple{System.String,System.Int32},System.Tuple{System.Object,System.Int32},System.Boolean})~System.Web.WebPages.AttributeValue">
|
||||
<summary>Creates an attribute value from the specified tuple object.</summary>
|
||||
<returns>The created attribute value.</returns>
|
||||
<param name="value">The tuple object from which to create from.</param>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.AttributeValue.op_Implicit(System.Tuple{System.Tuple{System.String,System.Int32},System.Tuple{System.String,System.Int32},System.Boolean})~System.Web.WebPages.AttributeValue">
|
||||
<summary>Creates an attribute value from the specified tuple object.</summary>
|
||||
<returns>The created attribute value.</returns>
|
||||
<param name="value">The tuple object from which to create from.</param>
|
||||
</member>
|
||||
<member name="P:System.Web.WebPages.AttributeValue.Prefix">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>Gets or sets the namespace prefix for the attribute.This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<returns>The namespace prefix for the attribute.</returns>
|
||||
</member>
|
||||
<member name="P:System.Web.WebPages.AttributeValue.Value">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>Gets or set the value for the attribute.This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<returns>The value for the attribute.</returns>
|
||||
</member>
|
||||
<member name="T:System.Web.WebPages.BrowserHelpers">
|
||||
<summary>Provides a way to specify custom browser (user agent) information.</summary>
|
||||
@@ -428,16 +469,20 @@
|
||||
<summary>Specifies a mobile browser.</summary>
|
||||
</member>
|
||||
<member name="T:System.Web.WebPages.BrowserOverrideStore">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.The current BrowserOverrideStore is used to get and set the user agent of a request.</summary>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.BrowserOverrideStore.#ctor">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.WebPages.BrowserOverrideStore" /> class.</summary>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.BrowserOverrideStore.GetOverriddenUserAgent(System.Web.HttpContextBase)">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Looks for a user agent by searching for the browser override cookie.</summary>
|
||||
<returns>The user agent.</returns>
|
||||
<param name="httpContext">The HTTP context.</param>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.BrowserOverrideStore.SetOverriddenUserAgent(System.Web.HttpContextBase,System.String)">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Adds a browser override cookie with the set user agent to the response of the current request.</summary>
|
||||
<param name="httpContext">The HTTP context.</param>
|
||||
<param name="userAgent">The user agent.</param>
|
||||
</member>
|
||||
<member name="T:System.Web.WebPages.BrowserOverrideStores">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
@@ -449,85 +494,117 @@
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
</member>
|
||||
<member name="T:System.Web.WebPages.CookieBrowserOverrideStore">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets overridden user agent for a request from a cookie. Creates a cookie to set the overridden user agent.</summary>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.CookieBrowserOverrideStore.#ctor">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.WebPages.CookieBrowserOverrideStore" /> class.</summary>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.CookieBrowserOverrideStore.#ctor(System.Int32)">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.WebPages.CookieBrowserOverrideStore" /> class.</summary>
|
||||
<param name="daysToExpire">The days to expire.</param>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.CookieBrowserOverrideStore.GetOverriddenUserAgent(System.Web.HttpContextBase)">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Looks for a user agent by searching for the browser override cookie.</summary>
|
||||
<returns>The user agent.</returns>
|
||||
<param name="httpContext">The HTTP context.</param>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.CookieBrowserOverrideStore.SetOverriddenUserAgent(System.Web.HttpContextBase,System.String)">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Adds a browser override cookie with the set user agent to the response of the current request.</summary>
|
||||
<param name="httpContext">The HTTP context.</param>
|
||||
<param name="userAgent">The user agent.</param>
|
||||
</member>
|
||||
<member name="T:System.Web.WebPages.DefaultDisplayMode">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the default display mode of the web pages.</summary>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.DefaultDisplayMode.#ctor">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.WebPages.DefaultDisplayMode" /> class.</summary>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.DefaultDisplayMode.#ctor(System.String)">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.WebPages.DefaultDisplayMode" /> class.</summary>
|
||||
<param name="suffix">The suffix.</param>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.DefaultDisplayMode.CanHandleContext(System.Web.HttpContextBase)">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates a value whether the <see cref="T:System.Web.HttpContextBase" /> can handle context.</summary>
|
||||
<returns>true if the <see cref="T:System.Web.HttpContextBase" /> can handle context; otherwise, false.</returns>
|
||||
<param name="httpContext">The specified http context.</param>
|
||||
</member>
|
||||
<member name="P:System.Web.WebPages.DefaultDisplayMode.ContextCondition">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets a value that indicates whether the context condition displays a default mode.</summary>
|
||||
<returns>true if the context condition displays a default mode; otherwise, false.</returns>
|
||||
</member>
|
||||
<member name="P:System.Web.WebPages.DefaultDisplayMode.DisplayModeId">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the display mode identifier of the web pages.</summary>
|
||||
<returns>The display mode identifier of the web pages.</returns>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.DefaultDisplayMode.GetDisplayInfo(System.Web.HttpContextBase,System.String,System.Func`2)">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<member name="M:System.Web.WebPages.DefaultDisplayMode.GetDisplayInfo(System.Web.HttpContextBase,System.String,System.Func{System.String,System.Boolean})">
|
||||
<summary>Retrieves the display information about an item in the result pane.</summary>
|
||||
<returns>The display information about an item in the result pane.</returns>
|
||||
<param name="httpContext">The http context.</param>
|
||||
<param name="virtualPath">The virtual path.</param>
|
||||
<param name="virtualPathExists">true if the virtual path exists; otherwise, false.</param>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.DefaultDisplayMode.TransformPath(System.String,System.String)">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Transforms the path of the display mode.</summary>
|
||||
<returns>The path of the display mode to transform.</returns>
|
||||
<param name="virtualPath">The virtual path.</param>
|
||||
<param name="suffix">The suffix.</param>
|
||||
</member>
|
||||
<member name="T:System.Web.WebPages.DisplayInfo">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents a property’s display information.</summary>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.DisplayInfo.#ctor(System.String,System.Web.WebPages.IDisplayMode)">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.WebPages.DisplayInfo" /> class.</summary>
|
||||
<param name="filePath">The virtual path.</param>
|
||||
<param name="displayMode">The active display mode.</param>
|
||||
</member>
|
||||
<member name="P:System.Web.WebPages.DisplayInfo.DisplayMode">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the active display mode for a Web page.</summary>
|
||||
<returns>The active display mode for a Web page.</returns>
|
||||
</member>
|
||||
<member name="P:System.Web.WebPages.DisplayInfo.FilePath">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the virtual path of the current Web page.</summary>
|
||||
<returns>The virtual path of the current Web page.</returns>
|
||||
</member>
|
||||
<member name="T:System.Web.WebPages.DisplayModeProvider">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the modes of display for the provider.</summary>
|
||||
</member>
|
||||
<member name="F:System.Web.WebPages.DisplayModeProvider.DefaultDisplayModeId">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Defines the default display mode identifier.</summary>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.DisplayModeProvider.GetAvailableDisplayModesForContext(System.Web.HttpContextBase,System.Web.WebPages.IDisplayMode)">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets a list of the available display modes for the context base.</summary>
|
||||
<returns>A list of the available display modes for the context base.</returns>
|
||||
<param name="httpContext">The http context base.</param>
|
||||
<param name="currentDisplayMode">The current display mode.</param>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.DisplayModeProvider.GetDisplayInfoForVirtualPath(System.String,System.Web.HttpContextBase,System.Func`2,System.Boolean)">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<member name="M:System.Web.WebPages.DisplayModeProvider.GetDisplayInfoForVirtualPath(System.String,System.Web.HttpContextBase,System.Func{System.String,System.Boolean},System.Web.WebPages.IDisplayMode)">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the <see cref="T:System.Web.WebPages.DisplayInfo" /> for the virtual path.</summary>
|
||||
<returns>The <see cref="T:System.Web.WebPages.DisplayInfo" /> for the virtual path.</returns>
|
||||
<param name="virtualPath">The virtual path.</param>
|
||||
<param name="httpContext">The http context base.</param>
|
||||
<param name="virtualPathExists">true if the virtual path exists; otherwise, false.</param>
|
||||
<param name="currentDisplayMode">The current display mode.</param>
|
||||
</member>
|
||||
<member name="P:System.Web.WebPages.DisplayModeProvider.Instance">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the instance of the <see cref="T:System.Web.WebPages.DisplayModeProvider" />.</summary>
|
||||
<returns>The instance of the <see cref="T:System.Web.WebPages.DisplayModeProvider" />.</returns>
|
||||
</member>
|
||||
<member name="F:System.Web.WebPages.DisplayModeProvider.MobileDisplayModeId">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Defines the mobile display mode identifier.</summary>
|
||||
</member>
|
||||
<member name="P:System.Web.WebPages.DisplayModeProvider.Modes">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets a list of modes of the <see cref="T:System.Web.WebPages.DisplayModeProvider" />.</summary>
|
||||
<returns>A list of modes of the <see cref="T:System.Web.WebPages.DisplayModeProvider" />.</returns>
|
||||
</member>
|
||||
<member name="P:System.Web.WebPages.DisplayModeProvider.RequireConsistentDisplayMode">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets a value that indicates whether the Web page requires consistent display mode.</summary>
|
||||
<returns>true if the Web page requires consistent display mode; otherwise, false.</returns>
|
||||
</member>
|
||||
<member name="T:System.Web.WebPages.HelperPage">
|
||||
<summary>Represents a base class for pages that is used when ASP.NET compiles a .cshtml or .vbhtml file and that exposes page-level and application-level properties and methods.</summary>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.HelperPage.#ctor">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.WebPages.HelperPage" /> class.</summary>
|
||||
</member>
|
||||
<member name="P:System.Web.WebPages.HelperPage.App">
|
||||
<summary>Gets the application-state data as a <see cref="T:System.Dynamic.DynamicObject" /> object that callers can use to create and access custom application-scoped properties.</summary>
|
||||
@@ -538,10 +615,19 @@
|
||||
<returns>The application-state data.</returns>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.HelperPage.BeginContext(System.IO.TextWriter,System.String,System.Int32,System.Int32,System.Boolean)">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Puts all the helper statements into the context of the helper page.</summary>
|
||||
<param name="writer">The text writer.</param>
|
||||
<param name="virtualPath">The helper virtual path.</param>
|
||||
<param name="startPosition">The starting position.</param>
|
||||
<param name="length">The length of the context.</param>
|
||||
<param name="isLiteral">true of the context has a literal attribute; otherwise, false.</param>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.HelperPage.BeginContext(System.String,System.Int32,System.Int32,System.Boolean)">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Puts all the helper statements into the context of the helper page.</summary>
|
||||
<param name="virtualPath">The helper virtual path.</param>
|
||||
<param name="startPosition">The starting position.</param>
|
||||
<param name="length">The length of the context.</param>
|
||||
<param name="isLiteral">true of the context has a literal attribute; otherwise, false.</param>
|
||||
</member>
|
||||
<member name="P:System.Web.WebPages.HelperPage.Cache">
|
||||
<summary>Gets the cache object for the current application domain.</summary>
|
||||
@@ -556,13 +642,23 @@
|
||||
<returns>The current page.</returns>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.HelperPage.EndContext(System.IO.TextWriter,System.String,System.Int32,System.Int32,System.Boolean)">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates the end of context block.</summary>
|
||||
<param name="writer">The text writer.</param>
|
||||
<param name="virtualPath">The helper virtual path.</param>
|
||||
<param name="startPosition">The starting position.</param>
|
||||
<param name="length">The length of the context.</param>
|
||||
<param name="isLiteral">true of the context has a literal attribute; otherwise, false.</param>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.HelperPage.EndContext(System.String,System.Int32,System.Int32,System.Boolean)">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates the end of context block.</summary>
|
||||
<param name="virtualPath">The helper virtual path.</param>
|
||||
<param name="startPosition">The starting position.</param>
|
||||
<param name="length">The length of the context.</param>
|
||||
<param name="isLiteral">true of the context has a literal attribute; otherwise, false.</param>
|
||||
</member>
|
||||
<member name="P:System.Web.WebPages.HelperPage.HelperVirtualPath">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the path of the helper page.</summary>
|
||||
<returns>The path of the helper page.</returns>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.HelperPage.Href(System.String,System.Object[])">
|
||||
<summary>Builds an absolute URL from an application-relative URL by using the specified parameters.</summary>
|
||||
@@ -631,19 +727,32 @@
|
||||
<returns>The virtual path.</returns>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.HelperPage.WriteAttributeTo(System.IO.TextWriter,System.String,System.Web.WebPages.Instrumentation.PositionTagged{System.String},System.Web.WebPages.Instrumentation.PositionTagged{System.String},System.Web.WebPages.AttributeValue[])">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Writes an attribute associated with the helper.</summary>
|
||||
<param name="writer">The text writer.</param>
|
||||
<param name="name">The name of the attribute.</param>
|
||||
<param name="prefix">The prefix.</param>
|
||||
<param name="suffix">The suffix.</param>
|
||||
<param name="values">The attribute value.</param>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.HelperPage.WriteLiteralTo(System.IO.TextWriter,System.Object)">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Writes a literal object to the helper.</summary>
|
||||
<param name="writer">The text writer.</param>
|
||||
<param name="value">The value of the object.</param>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.HelperPage.WriteLiteralTo(System.IO.TextWriter,System.Web.WebPages.HelperResult)">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Writes a helper result object to the helper.</summary>
|
||||
<param name="writer">The text writer</param>
|
||||
<param name="value">The helper result.</param>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.HelperPage.WriteTo(System.IO.TextWriter,System.Object)">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Writes an object to the helper.</summary>
|
||||
<param name="writer">The text writer.</param>
|
||||
<param name="value">The object value.</param>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.HelperPage.WriteTo(System.IO.TextWriter,System.Web.WebPages.HelperResult)">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Writes a helper result object to the helper.</summary>
|
||||
<param name="writer">The text writer.</param>
|
||||
<param name="value">The helper result value.</param>
|
||||
</member>
|
||||
<member name="T:System.Web.WebPages.HelperResult">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
@@ -670,16 +779,23 @@
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code..</summary>
|
||||
</member>
|
||||
<member name="T:System.Web.WebPages.IDisplayMode">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents the display mode interface for the web pages.</summary>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.IDisplayMode.CanHandleContext(System.Web.HttpContextBase)">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Indicates a value whether the web pages can handle HTTP context.</summary>
|
||||
<returns>true if the web pages can handle HTTP context; otherwise, false.</returns>
|
||||
<param name="httpContext">The HTTP context.</param>
|
||||
</member>
|
||||
<member name="P:System.Web.WebPages.IDisplayMode.DisplayModeId">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the display mode id for the web pages.</summary>
|
||||
<returns>The display mode id for the web pages.</returns>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.IDisplayMode.GetDisplayInfo(System.Web.HttpContextBase,System.String,System.Func`2)">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<member name="M:System.Web.WebPages.IDisplayMode.GetDisplayInfo(System.Web.HttpContextBase,System.String,System.Func{System.String,System.Boolean})">
|
||||
<summary>Returns this method to display all the information for the web pages.</summary>
|
||||
<returns>The method to display all the information for the web pages.</returns>
|
||||
<param name="httpContext">The HTTP context.</param>
|
||||
<param name="virtualPath">The virtual path.</param>
|
||||
<param name="virtualPathExists">true if the virtual path exists; otherwise, false.</param>
|
||||
</member>
|
||||
<member name="T:System.Web.WebPages.ITemplateFile">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
@@ -688,13 +804,16 @@
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
</member>
|
||||
<member name="T:System.Web.WebPages.IValidator">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Defines the properties and methods that objects that participate in webpages.</summary>
|
||||
</member>
|
||||
<member name="P:System.Web.WebPages.IValidator.ClientValidationRule">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets a container for client validation for the required field.</summary>
|
||||
<returns>A container for client validation for the required field.</returns>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.IValidator.Validate(System.ComponentModel.DataAnnotations.ValidationContext)">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Evaluates the condition it checks and updates the validation context.</summary>
|
||||
<returns>The condition it checks and updates the validation context.</returns>
|
||||
<param name="validationContext">The validation context.</param>
|
||||
</member>
|
||||
<member name="T:System.Web.WebPages.IVirtualPathFactory">
|
||||
<summary>Defines methods that are implemented by virtual path handler factories.</summary>
|
||||
@@ -1035,7 +1154,10 @@
|
||||
<param name="field">The name (value of the name attribute) of the user input element to validate.</param>
|
||||
<param name="validators">A list of one or more types of validation to register.</param>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.ValidationHelper.AddFormError(System.String)"></member>
|
||||
<member name="M:System.Web.WebPages.ValidationHelper.AddFormError(System.String)">
|
||||
<summary>Adds an error message.</summary>
|
||||
<param name="errorMessage">The error message.</param>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.ValidationHelper.ClassFor(System.String)">
|
||||
<summary>Renders an attribute that references the CSS style definition to use when validation messages for the user input element are rendered.</summary>
|
||||
<returns>The attribute.</returns>
|
||||
@@ -1051,7 +1173,7 @@
|
||||
<returns>The name.</returns>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.ValidationHelper.GetErrors(System.String[])">
|
||||
<summary>Returns a list of current validation errors, , and optionally lets you specify a list of fields to check.</summary>
|
||||
<summary>Returns a list of current validation errors, and optionally lets you specify a list of fields to check.</summary>
|
||||
<returns>The list of errors.</returns>
|
||||
<param name="fields">Optional. The names (value of the name attribute) of the user input elements to get error information for. You can specify any number of element names, separated by commas. If you do not specify a list of fields, the method returns errors for all fields.</param>
|
||||
</member>
|
||||
@@ -1105,6 +1227,7 @@
|
||||
<member name="M:System.Web.WebPages.Validator.EqualsTo(System.String,System.String)">
|
||||
<summary>Defines a validation test that test user input against the value of another field.</summary>
|
||||
<returns>The validation test.</returns>
|
||||
<param name="otherFieldName">The other field to compare.</param>
|
||||
<param name="errorMessage">The error message to display if validation fails.</param>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.Validator.Float(System.String)">
|
||||
@@ -1223,6 +1346,7 @@
|
||||
<returns>The new <see cref="T:System.Web.WebPages.WebPageBase" /> object.</returns>
|
||||
<param name="virtualPath">The virtual path to use to create the instance.</param>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.WebPageBase.CreatePageFromVirtualPath(System.String,System.Web.HttpContextBase,System.Func{System.String,System.Boolean},System.Web.WebPages.DisplayModeProvider,System.Web.WebPages.IDisplayMode)"></member>
|
||||
<member name="M:System.Web.WebPages.WebPageBase.DefineSection(System.String,System.Web.WebPages.SectionWriter)">
|
||||
<summary>Called by content pages to create named content sections.</summary>
|
||||
<param name="name">The name of the section to create.</param>
|
||||
@@ -1348,69 +1472,32 @@
|
||||
<summary>Provides objects and methods that are used to execute and render ASP.NET pages that include Razor syntax.</summary>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.WebPageExecutingBase.#ctor">
|
||||
<summary>Initializes the <see cref="T:System.Web.WebPages.WebPageExecutingBase" /> class for use by an inherited class instance. This constructor can only be called by an inherited class.</summary>
|
||||
</member>
|
||||
<member name="P:System.Web.WebPages.WebPageExecutingBase.App">
|
||||
<summary>Gets the application-state data as a <see cref="T:System.Dynamic.DynamicObject" /> object that callers can use to create and access custom application-scoped properties.</summary>
|
||||
<returns>The application-state data.</returns>
|
||||
</member>
|
||||
<member name="P:System.Web.WebPages.WebPageExecutingBase.AppState">
|
||||
<summary>Gets a reference to global application-state data that can be shared across sessions and requests in an ASP.NET application.</summary>
|
||||
<returns>The application-state data.</returns>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.WebPageExecutingBase.BeginContext(System.Int32,System.Int32,System.Boolean)">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.WebPageExecutingBase.BeginContext(System.IO.TextWriter,System.Int32,System.Int32,System.Boolean)">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.WebPageExecutingBase.BeginContext(System.IO.TextWriter,System.String,System.Int32,System.Int32,System.Boolean)">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.WebPageExecutingBase.BeginContext(System.String,System.Int32,System.Int32,System.Boolean)">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Web.WebPages.WebPageExecutingBase" /> class. This constructor can only be called by an inherited class.</summary>
|
||||
</member>
|
||||
<member name="P:System.Web.WebPages.WebPageExecutingBase.App"></member>
|
||||
<member name="P:System.Web.WebPages.WebPageExecutingBase.AppState"></member>
|
||||
<member name="M:System.Web.WebPages.WebPageExecutingBase.BeginContext(System.Int32,System.Int32,System.Boolean)"></member>
|
||||
<member name="M:System.Web.WebPages.WebPageExecutingBase.BeginContext(System.IO.TextWriter,System.Int32,System.Int32,System.Boolean)"></member>
|
||||
<member name="M:System.Web.WebPages.WebPageExecutingBase.BeginContext(System.IO.TextWriter,System.String,System.Int32,System.Int32,System.Boolean)"></member>
|
||||
<member name="M:System.Web.WebPages.WebPageExecutingBase.BeginContext(System.String,System.Int32,System.Int32,System.Boolean)"></member>
|
||||
<member name="P:System.Web.WebPages.WebPageExecutingBase.Context">
|
||||
<summary>When overridden in a derived class, gets or sets the <see cref="T:System.Web.HttpContextBase" /> object that is associated with a page.</summary>
|
||||
<returns>The current context data.</returns>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.WebPageExecutingBase.EndContext(System.Int32,System.Int32,System.Boolean)">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.WebPageExecutingBase.EndContext(System.IO.TextWriter,System.Int32,System.Int32,System.Boolean)">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.WebPageExecutingBase.EndContext(System.IO.TextWriter,System.String,System.Int32,System.Int32,System.Boolean)">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.WebPageExecutingBase.EndContext(System.String,System.Int32,System.Int32,System.Boolean)">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.WebPageExecutingBase.Execute">
|
||||
<summary>Executes the server code in the current web page that is marked using Razor syntax.</summary>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.WebPageExecutingBase.EndContext(System.Int32,System.Int32,System.Boolean)"></member>
|
||||
<member name="M:System.Web.WebPages.WebPageExecutingBase.EndContext(System.IO.TextWriter,System.Int32,System.Int32,System.Boolean)"></member>
|
||||
<member name="M:System.Web.WebPages.WebPageExecutingBase.EndContext(System.IO.TextWriter,System.String,System.Int32,System.Int32,System.Boolean)"></member>
|
||||
<member name="M:System.Web.WebPages.WebPageExecutingBase.EndContext(System.String,System.Int32,System.Int32,System.Boolean)"></member>
|
||||
<member name="M:System.Web.WebPages.WebPageExecutingBase.Execute"></member>
|
||||
<member name="M:System.Web.WebPages.WebPageExecutingBase.GetOutputWriter">
|
||||
<summary>Returns the text writer instance that is used to render the page.</summary>
|
||||
<returns>The text writer.</returns>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.WebPageExecutingBase.Href(System.String,System.Object[])">
|
||||
<summary>Builds an absolute URL from an application-relative URL by using the specified parameters.</summary>
|
||||
<returns>The absolute URL.</returns>
|
||||
<param name="path">The initial path to use in the URL.</param>
|
||||
<param name="pathParts">Additional path information, such as folders and subfolders.</param>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.WebPageExecutingBase.NormalizePath(System.String)">
|
||||
<summary>Returns a normalized path from the specified path.</summary>
|
||||
<returns>The normalized path.</returns>
|
||||
<param name="path">The path to normalize.</param>
|
||||
</member>
|
||||
<member name="P:System.Web.WebPages.WebPageExecutingBase.VirtualPath">
|
||||
<summary>Gets or sets the virtual path of the page.</summary>
|
||||
<returns>The virtual path.</returns>
|
||||
</member>
|
||||
<member name="P:System.Web.WebPages.WebPageExecutingBase.VirtualPathFactory">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.WebPageExecutingBase.Href(System.String,System.Object[])"></member>
|
||||
<member name="M:System.Web.WebPages.WebPageExecutingBase.NormalizeLayoutPagePath(System.String)"></member>
|
||||
<member name="M:System.Web.WebPages.WebPageExecutingBase.NormalizePath(System.String)"></member>
|
||||
<member name="P:System.Web.WebPages.WebPageExecutingBase.VirtualPath"></member>
|
||||
<member name="P:System.Web.WebPages.WebPageExecutingBase.VirtualPathFactory"></member>
|
||||
<member name="M:System.Web.WebPages.WebPageExecutingBase.Write(System.Object)">
|
||||
<summary>Writes the string representation of the specified object as an HTML-encoded string.</summary>
|
||||
<param name="value">The object to encode and write.</param>
|
||||
@@ -1419,15 +1506,9 @@
|
||||
<summary>Writes the specified <see cref="T:System.Web.WebPages.HelperResult" /> object as an HTML-encoded string.</summary>
|
||||
<param name="result">The helper result to encode and write.</param>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.WebPageExecutingBase.WriteAttribute(System.String,System.Web.WebPages.Instrumentation.PositionTagged{System.String},System.Web.WebPages.Instrumentation.PositionTagged{System.String},System.Web.WebPages.AttributeValue[])">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.WebPageExecutingBase.WriteAttributeTo(System.IO.TextWriter,System.String,System.Web.WebPages.Instrumentation.PositionTagged{System.String},System.Web.WebPages.Instrumentation.PositionTagged{System.String},System.Web.WebPages.AttributeValue[])">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.WebPageExecutingBase.WriteAttributeTo(System.String,System.IO.TextWriter,System.String,System.Web.WebPages.Instrumentation.PositionTagged{System.String},System.Web.WebPages.Instrumentation.PositionTagged{System.String},System.Web.WebPages.AttributeValue[])">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.WebPageExecutingBase.WriteAttribute(System.String,System.Web.WebPages.Instrumentation.PositionTagged{System.String},System.Web.WebPages.Instrumentation.PositionTagged{System.String},System.Web.WebPages.AttributeValue[])"></member>
|
||||
<member name="M:System.Web.WebPages.WebPageExecutingBase.WriteAttributeTo(System.IO.TextWriter,System.String,System.Web.WebPages.Instrumentation.PositionTagged{System.String},System.Web.WebPages.Instrumentation.PositionTagged{System.String},System.Web.WebPages.AttributeValue[])"></member>
|
||||
<member name="M:System.Web.WebPages.WebPageExecutingBase.WriteAttributeTo(System.String,System.IO.TextWriter,System.String,System.Web.WebPages.Instrumentation.PositionTagged{System.String},System.Web.WebPages.Instrumentation.PositionTagged{System.String},System.Web.WebPages.AttributeValue[])"></member>
|
||||
<member name="M:System.Web.WebPages.WebPageExecutingBase.WriteLiteral(System.Object)">
|
||||
<summary>Writes the specified object without HTML encoding.</summary>
|
||||
<param name="value">The object to write.</param>
|
||||
@@ -1490,29 +1571,14 @@
|
||||
<member name="M:System.Web.WebPages.WebPageRenderingBase.#ctor">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Web.WebPages.WebPageRenderingBase" /> class.</summary>
|
||||
</member>
|
||||
<member name="P:System.Web.WebPages.WebPageRenderingBase.Cache">
|
||||
<summary>When overridden in a derived class, gets the cache object for the current application domain.</summary>
|
||||
<returns>The cache object.</returns>
|
||||
</member>
|
||||
<member name="P:System.Web.WebPages.WebPageRenderingBase.Culture">
|
||||
<summary>When overridden in a derived class, gets or sets the culture for the current thread.</summary>
|
||||
<returns>The culture for the current thread.</returns>
|
||||
</member>
|
||||
<member name="P:System.Web.WebPages.WebPageRenderingBase.DisplayMode">
|
||||
<summary>Gets the display mode for the request.</summary>
|
||||
<returns>The display mode.</returns>
|
||||
</member>
|
||||
<member name="P:System.Web.WebPages.WebPageRenderingBase.Cache"></member>
|
||||
<member name="P:System.Web.WebPages.WebPageRenderingBase.Culture"></member>
|
||||
<member name="P:System.Web.WebPages.WebPageRenderingBase.DisplayMode"></member>
|
||||
<member name="M:System.Web.WebPages.WebPageRenderingBase.ExecutePageHierarchy">
|
||||
<summary>When overridden in a derived class, calls the methods that are used to initialize the page.</summary>
|
||||
</member>
|
||||
<member name="P:System.Web.WebPages.WebPageRenderingBase.IsAjax">
|
||||
<summary>When overridden in a derived class, get a value that indicates whether Ajax is being used during the request of the web page.</summary>
|
||||
<returns>true if Ajax is being used during the request; otherwise, false.</returns>
|
||||
</member>
|
||||
<member name="P:System.Web.WebPages.WebPageRenderingBase.IsPost">
|
||||
<summary>When overridden in a derived class, returns a value that indicates whether the HTTP data transfer method used by the client to request the web page is a POST request.</summary>
|
||||
<returns>true if the HTTP verb is "POST"; otherwise, false.</returns>
|
||||
</member>
|
||||
<member name="P:System.Web.WebPages.WebPageRenderingBase.IsAjax"></member>
|
||||
<member name="P:System.Web.WebPages.WebPageRenderingBase.IsPost"></member>
|
||||
<member name="P:System.Web.WebPages.WebPageRenderingBase.Layout">
|
||||
<summary>When overridden in a derived class, gets or sets the path of a layout page.</summary>
|
||||
<returns>The path of a layout page.</returns>
|
||||
@@ -1521,59 +1587,30 @@
|
||||
<summary>When overridden in a derived class, provides property-like access to page data that is shared between pages, layout pages, and partial pages.</summary>
|
||||
<returns>An object that contains page data.</returns>
|
||||
</member>
|
||||
<member name="P:System.Web.WebPages.WebPageRenderingBase.PageContext">
|
||||
<summary>When overridden in a derived class, gets the HTTP context for the web page.</summary>
|
||||
<returns>The HTTP context for the web page.</returns>
|
||||
</member>
|
||||
<member name="P:System.Web.WebPages.WebPageRenderingBase.PageContext"></member>
|
||||
<member name="P:System.Web.WebPages.WebPageRenderingBase.PageData">
|
||||
<summary>When overridden in a derived class, provides array-like access to page data that is shared between pages, layout pages, and partial pages.</summary>
|
||||
<returns>An object that provides array-like access to page data.</returns>
|
||||
</member>
|
||||
<member name="P:System.Web.WebPages.WebPageRenderingBase.Profile">
|
||||
<summary>Gets profile information for the current request context.</summary>
|
||||
<returns>The profile information.</returns>
|
||||
</member>
|
||||
<member name="P:System.Web.WebPages.WebPageRenderingBase.Profile"></member>
|
||||
<member name="M:System.Web.WebPages.WebPageRenderingBase.RenderPage(System.String,System.Object[])">
|
||||
<summary>When overridden in a derived class, renders a web page.</summary>
|
||||
<returns>The markup that represents the web page.</returns>
|
||||
<param name="path">The path of the page to render.</param>
|
||||
<param name="data">Additional data that is used to render the page.</param>
|
||||
</member>
|
||||
<member name="P:System.Web.WebPages.WebPageRenderingBase.Request">
|
||||
<summary>When overridden in a derived class, gets the <see cref="T:System.Web.HttpRequest" /> object for the current HTTP request.</summary>
|
||||
<returns>An <see cref="T:System.Web.HttpRequest" /> object that contains the HTTP values sent by a client during a web request.</returns>
|
||||
</member>
|
||||
<member name="P:System.Web.WebPages.WebPageRenderingBase.Response">
|
||||
<summary>When overridden in a derived class, gets the <see cref="T:System.Web.HttpResponse" /> object for the current HTTP response.</summary>
|
||||
<returns>An <see cref="T:System.Web.HttpResponse" /> object that contains the HTTP response information from an ASP.NET operation.</returns>
|
||||
</member>
|
||||
<member name="P:System.Web.WebPages.WebPageRenderingBase.Server">
|
||||
<summary>When overridden in a derived class, gets the <see cref="T:System.Web.HttpServerUtility" /> object that provides methods that can be used as part of web-page processing.</summary>
|
||||
<returns>The <see cref="T:System.Web.HttpServerUtility" /> object.</returns>
|
||||
</member>
|
||||
<member name="P:System.Web.WebPages.WebPageRenderingBase.Session">
|
||||
<summary>When overridden in a derived class, gets the <see cref="T:System.Web.HttpSessionState" /> object for the current HTTP request.</summary>
|
||||
<returns>Session data for the current request.</returns>
|
||||
</member>
|
||||
<member name="P:System.Web.WebPages.WebPageRenderingBase.TemplateInfo">
|
||||
<summary>When overridden in a derived class, gets information about the currently executing file.</summary>
|
||||
<returns>Information about the currently executing file.</returns>
|
||||
</member>
|
||||
<member name="P:System.Web.WebPages.WebPageRenderingBase.UICulture">
|
||||
<summary>When overridden in a derived class, gets or sets the current culture used by the Resource Manager to look up culture-specific resources at run time.</summary>
|
||||
<returns>The current culture used by the Resource Manager.</returns>
|
||||
</member>
|
||||
<member name="P:System.Web.WebPages.WebPageRenderingBase.UrlData">
|
||||
<summary>When overridden in a derived class, gets data related to the URL path.</summary>
|
||||
<returns>Data related to the URL path.</returns>
|
||||
</member>
|
||||
<member name="P:System.Web.WebPages.WebPageRenderingBase.User">
|
||||
<summary>When overridden in a derived class, gets a user value based on the HTTP context.</summary>
|
||||
<returns>A user value based on the HTTP context.</returns>
|
||||
</member>
|
||||
<member name="P:System.Web.WebPages.WebPageRenderingBase.Request"></member>
|
||||
<member name="P:System.Web.WebPages.WebPageRenderingBase.Response"></member>
|
||||
<member name="P:System.Web.WebPages.WebPageRenderingBase.Server"></member>
|
||||
<member name="P:System.Web.WebPages.WebPageRenderingBase.Session"></member>
|
||||
<member name="P:System.Web.WebPages.WebPageRenderingBase.TemplateInfo"></member>
|
||||
<member name="P:System.Web.WebPages.WebPageRenderingBase.UICulture"></member>
|
||||
<member name="P:System.Web.WebPages.WebPageRenderingBase.UrlData"></member>
|
||||
<member name="P:System.Web.WebPages.WebPageRenderingBase.User"></member>
|
||||
<member name="T:System.Web.WebPages.Html.HtmlHelper">
|
||||
<summary>Provides support for rendering HTML form controls and performing form validation in a web page.</summary>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.Html.HtmlHelper.AnonymousObjectToHtmlAttributes(System.Object)"></member>
|
||||
<member name="M:System.Web.WebPages.Html.HtmlHelper.AttributeEncode(System.Object)">
|
||||
<summary>Returns an HTML-encoded string that represents the specified object by using a minimal encoding that is suitable only for HTML attributes that are enclosed in quotation marks.</summary>
|
||||
<returns>An HTML-encoded string that represents the object.</returns>
|
||||
@@ -1582,7 +1619,7 @@
|
||||
<member name="M:System.Web.WebPages.Html.HtmlHelper.AttributeEncode(System.String)">
|
||||
<summary>Returns an HTML-encoded string that represents the specified string by using a minimal encoding that is suitable only for HTML attributes that are enclosed in quotation marks.</summary>
|
||||
<returns>An HTML-encoded string that represents the original string.</returns>
|
||||
<param name="value">The string to encode</param>
|
||||
<param name="value">The string to encode.</param>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.Html.HtmlHelper.CheckBox(System.String)">
|
||||
<summary>Returns an HTML check box control that has the specified name.</summary>
|
||||
@@ -1784,7 +1821,7 @@
|
||||
<summary>Returns an HTML label that displays the specified text, and that has the specified for attribute and custom attributes defined by an attribute dictionary.</summary>
|
||||
<returns>The HTML markup that represents the label.</returns>
|
||||
<param name="labelText">The text to display.</param>
|
||||
<param name="labelFor"> The value to assign to the for attribute of the HTML control element.</param>
|
||||
<param name="labelFor">The value to assign to the for attribute of the HTML control element.</param>
|
||||
<param name="attributes">The names and values of custom attributes for the element.</param>
|
||||
<exception cref="T:Sytem.ArgumentException">
|
||||
<paramref name="labelText" /> is null or empty.</exception>
|
||||
@@ -1801,7 +1838,7 @@
|
||||
<member name="M:System.Web.WebPages.Html.HtmlHelper.ListBox(System.String,System.Collections.Generic.IEnumerable{System.Web.WebPages.Html.SelectListItem})">
|
||||
<summary>Returns an HTML list box control that has the specified name and that contains the specified list items.</summary>
|
||||
<returns>The HTML markup that represents the list box control.</returns>
|
||||
<param name="name"> The value to assign to the name attribute of the HTML select element.</param>
|
||||
<param name="name">The value to assign to the name attribute of the HTML select element.</param>
|
||||
<param name="selectList">A list of <see cref="T:System.Web.WebPages.Html.SelectListItem" /> instances that are used to populate the list.</param>
|
||||
<exception cref="T:Sytem.ArgumentException">
|
||||
<paramref name="name" /> is null or empty.</exception>
|
||||
@@ -1999,7 +2036,7 @@
|
||||
<returns>The HTML markup that represents the radio button control.</returns>
|
||||
<param name="name">The value to assign to the name attribute of the HTML control element. The name attribute defines the group that the radio button belongs to.</param>
|
||||
<param name="value">The value to assign to the value attribute of the element.</param>
|
||||
<param name="htmlAttributes"> The names and values of custom attributes for the element.</param>
|
||||
<param name="htmlAttributes">The names and values of custom attributes for the element.</param>
|
||||
<exception cref="T:Sytem.ArgumentException">
|
||||
<paramref name="name" /> is null or empty.</exception>
|
||||
</member>
|
||||
@@ -2076,7 +2113,7 @@
|
||||
<member name="M:System.Web.WebPages.Html.HtmlHelper.TextArea(System.String,System.String,System.Int32,System.Int32,System.Object)">
|
||||
<summary>Returns an HTML multi-line text input (text area) control that has the specified name, value, row attribute, col attribute, and custom attributes defined by an attribute object.</summary>
|
||||
<returns>The HTML markup that represents the text area control.</returns>
|
||||
<param name="name"> The value to assign to the name attribute of the HTML textarea element.</param>
|
||||
<param name="name">The value to assign to the name attribute of the HTML textarea element.</param>
|
||||
<param name="value">The text to display.</param>
|
||||
<param name="rows">The value to assign to the rows attribute of the element.</param>
|
||||
<param name="columns">The value to assign to the cols attribute of the element.</param>
|
||||
@@ -2339,7 +2376,6 @@
|
||||
<member name="P:System.Web.WebPages.Html.ModelStateDictionary.Item(System.String)">
|
||||
<summary>Gets or sets the model state that is associated with the specified key in the model-state dictionary.</summary>
|
||||
<returns>The model state that is associated with the specified key in the dictionary.</returns>
|
||||
<param name="key">The key that is associated with the model state.</param>
|
||||
</member>
|
||||
<member name="P:System.Web.WebPages.Html.ModelStateDictionary.Keys">
|
||||
<summary>Gets a list that contains the keys in the model-state dictionary.</summary>
|
||||
@@ -2401,53 +2437,84 @@
|
||||
<returns>The value of the HTML value attribute that is associated with the select list item.</returns>
|
||||
</member>
|
||||
<member name="T:System.Web.WebPages.Instrumentation.InstrumentationService">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents a web pages instrumentation service.</summary>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.Instrumentation.InstrumentationService.#ctor">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.WebPages.Instrumentation.InstrumentationService" /> class.</summary>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.Instrumentation.InstrumentationService.BeginContext(System.Web.HttpContextBase,System.String,System.IO.TextWriter,System.Int32,System.Int32,System.Boolean)">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Called before it renders the output for the specified context.</summary>
|
||||
<param name="context">The context.</param>
|
||||
<param name="virtualPath">The virtual path.</param>
|
||||
<param name="writer">The writer.</param>
|
||||
<param name="startPosition">The start position.</param>
|
||||
<param name="length">The length of the context.</param>
|
||||
<param name="isLiteral">Determines whether the context is literal.</param>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.Instrumentation.InstrumentationService.EndContext(System.Web.HttpContextBase,System.String,System.IO.TextWriter,System.Int32,System.Int32,System.Boolean)">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Called after it renders the output for the specified context.</summary>
|
||||
<param name="context">The context.</param>
|
||||
<param name="virtualPath">The virtual path.</param>
|
||||
<param name="writer">The writer.</param>
|
||||
<param name="startPosition">The start position.</param>
|
||||
<param name="length">The length of the context.</param>
|
||||
<param name="isLiteral">Determines whether the context is literal.</param>
|
||||
</member>
|
||||
<member name="P:System.Web.WebPages.Instrumentation.InstrumentationService.IsAvailable">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets a value indicating whether the service is available.</summary>
|
||||
<returns>true if the service is available; otherwise, false.</returns>
|
||||
</member>
|
||||
<member name="T:System.Web.WebPages.Instrumentation.PositionTagged`1">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<typeparam name="T"></typeparam>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Represents a position tagged.</summary>
|
||||
<typeparam name="T">The type of the position..</typeparam>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.Instrumentation.PositionTagged`1.#ctor(`0,System.Int32)">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Initializes a new instance of the <see cref="T:System.Web.WebPages.Instrumentation.PositionTagged`1" /> class.</summary>
|
||||
<param name="value">The value of this current instance.</param>
|
||||
<param name="offset">The offset.</param>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.Instrumentation.PositionTagged`1.Equals(System.Object)">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the specified object is equal to the current object.</summary>
|
||||
<returns>true if the specified object is equal to the current object; otherwise, false.</returns>
|
||||
<param name="obj">The object to compare to.</param>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.Instrumentation.PositionTagged`1.GetHashCode">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets the hash code of the current instance.</summary>
|
||||
<returns>The hash code of the current instance.</returns>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.Instrumentation.PositionTagged`1.op_Equality(System.Web.WebPages.Instrumentation.PositionTagged{`0},System.Web.WebPages.Instrumentation.PositionTagged{`0})">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the two objects are equal.</summary>
|
||||
<returns>true if the two objects are equal; otherwise, false.</returns>
|
||||
<param name="left">The first object.</param>
|
||||
<param name="right">The second object.</param>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.Instrumentation.PositionTagged`1.op_Implicit(System.Tuple`2)~System.Web.WebPages.Instrumentation.PositionTagged{`0}">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<member name="M:System.Web.WebPages.Instrumentation.PositionTagged`1.op_Implicit(System.Tuple{`0,System.Int32})~System.Web.WebPages.Instrumentation.PositionTagged{`0}">
|
||||
<summary>Converts the specified object to a <see cref="T:System.Web.WebPages.Instrumentation.PositionTagged`1" /> object.</summary>
|
||||
<returns>The <see cref="T:System.Web.WebPages.Instrumentation.PositionTagged`1" /> that represents the converted <paramref name="value" />.</returns>
|
||||
<param name="value">The object to convert.</param>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.Instrumentation.PositionTagged`1.op_Implicit(System.Web.WebPages.Instrumentation.PositionTagged{`0})~`0">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Converts the <paramref name="value" /> to a <see cref="T:System.Web.WebPages.Instrumentation.PositionTagged`1" /> object.</summary>
|
||||
<returns>The <see cref="T:System.Web.WebPages.Instrumentation.PositionTagged`1" /> that represents the converted <paramref name="value" />.</returns>
|
||||
<param name="value">The object to convert.</param>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.Instrumentation.PositionTagged`1.op_Inequality(System.Web.WebPages.Instrumentation.PositionTagged{`0},System.Web.WebPages.Instrumentation.PositionTagged{`0})">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Determines whether the two objects are not equal.</summary>
|
||||
<returns>true if the two objects are not equal; otherwise, false.</returns>
|
||||
<param name="left">The first object.</param>
|
||||
<param name="right">The second object.</param>
|
||||
</member>
|
||||
<member name="P:System.Web.WebPages.Instrumentation.PositionTagged`1.Position">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the position associated with the <see cref="T:System.Web.WebPages.Instrumentation.PositionTagged`1" />.</summary>
|
||||
<returns>The position associated with the <see cref="T:System.Web.WebPages.Instrumentation.PositionTagged`1" />.</returns>
|
||||
</member>
|
||||
<member name="M:System.Web.WebPages.Instrumentation.PositionTagged`1.ToString">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Returns a string representation of the <see cref="T:System.Web.WebPages.Instrumentation.PositionTagged`1" /> object.</summary>
|
||||
<returns>A string that represents the <see cref="T:System.Web.WebPages.Instrumentation.PositionTagged`1" /> object.</returns>
|
||||
</member>
|
||||
<member name="P:System.Web.WebPages.Instrumentation.PositionTagged`1.Value">
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
||||
<summary>This type/member supports the .NET Framework infrastructure and is not intended to be used directly from your code.Gets or sets the value of the current instance.</summary>
|
||||
<returns>The value of the current instance.</returns>
|
||||
</member>
|
||||
<member name="T:System.Web.WebPages.Scope.AspNetRequestScopeStorageProvider">
|
||||
<summary>Defines an ASP.NET request scope storage provider.</summary>
|
||||
@@ -2462,7 +2529,6 @@
|
||||
<member name="P:System.Web.WebPages.Scope.AspNetRequestScopeStorageProvider.CurrentScope">
|
||||
<summary>Gets or sets the dictionary to store data in the current scope.</summary>
|
||||
<returns>The dictionary that stores current scope data.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The application start page was not executed before the attempt was made to set this property.</exception>
|
||||
</member>
|
||||
<member name="P:System.Web.WebPages.Scope.AspNetRequestScopeStorageProvider.GlobalScope">
|
||||
<summary>Gets the dictionary to store data in the global scope.</summary>
|
||||
@@ -2471,7 +2537,6 @@
|
||||
<member name="P:System.Web.WebPages.Scope.AspNetRequestScopeStorageProvider.RequestScope">
|
||||
<summary>Gets the dictionary to store data in the request scope.</summary>
|
||||
<returns>The dictionary that stores request scope data.</returns>
|
||||
<exception cref="T:System.InvalidOperationException">The application start page was not executed before the attempt was made to get this property.</exception>
|
||||
</member>
|
||||
<member name="T:System.Web.WebPages.Scope.IScopeStorageProvider">
|
||||
<summary>Defines a dictionary that provides scoped access to data.</summary>
|
||||
@@ -2571,7 +2636,6 @@
|
||||
<member name="P:System.Web.WebPages.Scope.ScopeStorageDictionary.Item(System.Object)">
|
||||
<summary>Gets or sets the element that is associated with the specified key.</summary>
|
||||
<returns>The element that has the specified key.</returns>
|
||||
<param name="key">The key of the element to get or set.</param>
|
||||
</member>
|
||||
<member name="P:System.Web.WebPages.Scope.ScopeStorageDictionary.Keys">
|
||||
<summary>Gets a <see cref="T:System.Collections.Generic.List`1" /> object that contains the keys from the concatenated <see cref="T:System.Web.WebPages.Scope.ScopeStorageDictionary" /> and <see cref="P:System.Web.WebPages.Scope.ScopeStorageDictionary.BaseScope" /> objects.</summary>
|
||||
|
||||
@@ -2,11 +2,11 @@
|
||||
<configuration>
|
||||
|
||||
<configSections>
|
||||
<sectionGroup name="system.web.webPages.razor" type="System.Web.WebPages.Razor.Configuration.RazorWebSectionGroup, System.Web.WebPages.Razor, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
|
||||
<sectionGroup name="system.web.webPages.razor" type="System.Web.WebPages.Razor.Configuration.RazorWebSectionGroup, System.Web.WebPages.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
|
||||
<remove name="host"/>
|
||||
<remove name="pages"/>
|
||||
<section name="host" type="System.Web.WebPages.Razor.Configuration.HostSection, System.Web.WebPages.Razor, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false"/>
|
||||
<section name="pages" type="System.Web.WebPages.Razor.Configuration.RazorPagesSection, System.Web.WebPages.Razor, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false"/>
|
||||
<section name="host" type="System.Web.WebPages.Razor.Configuration.HostSection, System.Web.WebPages.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false"/>
|
||||
<section name="pages" type="System.Web.WebPages.Razor.Configuration.RazorPagesSection, System.Web.WebPages.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false"/>
|
||||
</sectionGroup>
|
||||
<section name="dataCacheClients" type="Microsoft.ApplicationServer.Caching.DataCacheClientsSection, Microsoft.ApplicationServer.Caching.Core" allowLocation="true" allowDefinition="Everywhere" />
|
||||
</configSections>
|
||||
@@ -15,7 +15,7 @@
|
||||
<add key="log4net.Config" value="Config\log4net.config"/>
|
||||
</appSettings>
|
||||
<system.web.webPages.razor>
|
||||
<host factoryType="System.Web.Mvc.MvcWebRazorHostFactory, System.Web.Mvc, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
|
||||
<host factoryType="System.Web.Mvc.MvcWebRazorHostFactory, System.Web.Mvc, Version=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
|
||||
<pages pageBaseType="Orchard.Mvc.ViewEngines.Razor.WebViewPage">
|
||||
<namespaces>
|
||||
<add namespace="System.Web.Mvc"/>
|
||||
@@ -68,7 +68,7 @@
|
||||
<add extension=".csproj" type="Orchard.Environment.Extensions.Compilers.CSharpExtensionBuildProviderShim"/>
|
||||
</buildProviders>
|
||||
<assemblies>
|
||||
<add assembly="System.Web.Mvc, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"/>
|
||||
<add assembly="System.Web.Mvc, Version=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"/>
|
||||
<add assembly="System.Web.Abstractions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"/>
|
||||
<add assembly="System.Web.Routing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"/>
|
||||
<add assembly="System.Data.Linq, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
|
||||
@@ -162,27 +162,27 @@
|
||||
<probing privatePath="App_Data/Dependencies"/>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.0.0.0" newVersion="4.0.0.0"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-2.0.0.0" newVersion="2.0.0.0"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-3.0.0.0" newVersion="3.0.0.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Web.Razor" publicKeyToken="31bf3856ad364e35"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-2.0.0.0" newVersion="2.0.0.0"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-3.0.0.0" newVersion="3.0.0.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-2.0.0.0" newVersion="2.0.0.0"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-3.0.0.0" newVersion="3.0.0.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Web.WebPages.Deployment" publicKeyToken="31bf3856ad364e35"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-2.0.0.0" newVersion="2.0.0.0"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-3.0.0.0" newVersion="3.0.0.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Web.WebPages.Razor" publicKeyToken="31bf3856ad364e35"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-2.0.0.0" newVersion="2.0.0.0"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-3.0.0.0" newVersion="3.0.0.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="NHibernate" publicKeyToken="aa95f207798dfdb4" culture="neutral"/>
|
||||
|
||||
@@ -2,11 +2,11 @@
|
||||
<configuration>
|
||||
|
||||
<configSections>
|
||||
<sectionGroup name="system.web.webPages.razor" type="System.Web.WebPages.Razor.Configuration.RazorWebSectionGroup, System.Web.WebPages.Razor, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
|
||||
<sectionGroup name="system.web.webPages.razor" type="System.Web.WebPages.Razor.Configuration.RazorWebSectionGroup, System.Web.WebPages.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
|
||||
<remove name="host"/>
|
||||
<remove name="pages"/>
|
||||
<section name="host" type="System.Web.WebPages.Razor.Configuration.HostSection, System.Web.WebPages.Razor, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false"/>
|
||||
<section name="pages" type="System.Web.WebPages.Razor.Configuration.RazorPagesSection, System.Web.WebPages.Razor, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false"/>
|
||||
<section name="host" type="System.Web.WebPages.Razor.Configuration.HostSection, System.Web.WebPages.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false"/>
|
||||
<section name="pages" type="System.Web.WebPages.Razor.Configuration.RazorPagesSection, System.Web.WebPages.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false"/>
|
||||
</sectionGroup>
|
||||
</configSections>
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
</appSettings>
|
||||
|
||||
<system.web.webPages.razor>
|
||||
<host factoryType="System.Web.Mvc.MvcWebRazorHostFactory, System.Web.Mvc, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
|
||||
<host factoryType="System.Web.Mvc.MvcWebRazorHostFactory, System.Web.Mvc, Version=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
|
||||
<pages pageBaseType="Orchard.Mvc.ViewEngines.Razor.WebViewPage">
|
||||
<namespaces>
|
||||
<add namespace="System.Web.Mvc"/>
|
||||
@@ -55,7 +55,7 @@
|
||||
<add extension=".csproj" type="Orchard.Environment.Extensions.Compilers.CSharpExtensionBuildProviderShim"/>
|
||||
</buildProviders>
|
||||
<assemblies>
|
||||
<add assembly="System.Web.Mvc, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"/>
|
||||
<add assembly="System.Web.Mvc, Version=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"/>
|
||||
<add assembly="System.Web.Abstractions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"/>
|
||||
<add assembly="System.Web.Routing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"/>
|
||||
<add assembly="System.Data.Linq, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
|
||||
@@ -146,27 +146,27 @@
|
||||
<probing privatePath="App_Data/Dependencies"/>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.0.0.0" newVersion="4.0.0.0"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-2.0.0.0" newVersion="2.0.0.0"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-3.0.0.0" newVersion="3.0.0.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Web.Razor" publicKeyToken="31bf3856ad364e35"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-2.0.0.0" newVersion="2.0.0.0"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-3.0.0.0" newVersion="3.0.0.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-2.0.0.0" newVersion="2.0.0.0"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-3.0.0.0" newVersion="3.0.0.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Web.WebPages.Deployment" publicKeyToken="31bf3856ad364e35"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-2.0.0.0" newVersion="2.0.0.0"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-3.0.0.0" newVersion="3.0.0.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Web.WebPages.Razor" publicKeyToken="31bf3856ad364e35"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-2.0.0.0" newVersion="2.0.0.0"/>
|
||||
<bindingRedirect oldVersion="0.0.0.0-3.0.0.0" newVersion="3.0.0.0"/>
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="NHibernate" publicKeyToken="aa95f207798dfdb4" culture="neutral"/>
|
||||
|
||||
Reference in New Issue
Block a user