初始化项目

This commit is contained in:
2025-11-20 13:11:05 +08:00
commit d5edc62c08
2412 changed files with 2201918 additions and 0 deletions

View File

@@ -0,0 +1,41 @@
<?xml version="1.0"?>
<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
<!-- If runtime tag is absent -->
<runtime xdt:Transform="InsertIfMissing">
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
</assemblyBinding>
</runtime>
<!-- If runtime tag is present, but assembly binding tag is absent -->
<runtime>
<assemblyBinding xdt:Transform="InsertIfMissing" xmlns="urn:schemas-microsoft-com:asm.v1">
</assemblyBinding>
</runtime>
<!-- If the binding redirect is already present, the existing entry needs to be removed before inserting the new entry-->
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly xdt:Transform="Remove"
xdt:Locator="Condition(./_defaultNamespace:assemblyIdentity/@name='System.Web.Helpers')" >
</dependentAssembly>
<dependentAssembly xdt:Transform="Remove"
xdt:Locator="Condition(./_defaultNamespace:assemblyIdentity/@name='System.Web.WebPages')" >
</dependentAssembly>
</assemblyBinding>
</runtime>
<!-- Inserting the new binding redirect -->
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly xdt:Transform="Insert">
<assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" />
<bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
</dependentAssembly>
<dependentAssembly xdt:Transform="Insert">
<assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" />
<bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>

View File

@@ -0,0 +1,13 @@
<?xml version="1.0"?>
<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly xdt:Transform="Remove"
xdt:Locator="Condition(./_defaultNamespace:assemblyIdentity/@name='System.Web.Helpers')" >
</dependentAssembly>
<dependentAssembly xdt:Transform="Remove"
xdt:Locator="Condition(./_defaultNamespace:assemblyIdentity/@name='System.Web.WebPages')" >
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>

View File

@@ -0,0 +1,839 @@
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>System.Web.Helpers</name>
</assembly>
<members>
<member name="T:System.Web.Helpers.Chart">
<summary>Displays data in the form of a graphical chart.</summary>
</member>
<member name="M:System.Web.Helpers.Chart.#ctor(System.Int32,System.Int32,System.String,System.String)">
<summary>Initializes a new instance of the <see cref="T:System.Web.Helpers.Chart" /> class.</summary>
<param name="width">The width, in pixels, of the complete chart image.</param>
<param name="height">The height, in pixels, of the complete chart image.</param>
<param name="theme">(Optional) The template (theme) to apply to the chart.</param>
<param name="themePath">(Optional) The template (theme) path and file name to apply to the chart.</param>
</member>
<member name="M:System.Web.Helpers.Chart.AddLegend(System.String,System.String)">
<summary>Adds a legend to the chart.</summary>
<returns>The chart.</returns>
<param name="title">The text of the legend title.</param>
<param name="name">The unique name of the legend.</param>
</member>
<member name="M:System.Web.Helpers.Chart.AddSeries(System.String,System.String,System.String,System.String,System.String,System.Int32,System.Collections.IEnumerable,System.String,System.Collections.IEnumerable,System.String)">
<summary>Provides data points and series attributes for the chart.</summary>
<returns>The chart.</returns>
<param name="name">The unique name of the series.</param>
<param name="chartType">The chart type of a series.</param>
<param name="chartArea">The name of the chart area that is used to plot the data series.</param>
<param name="axisLabel">The axis label text for the series.</param>
<param name="legend">The name of the series that is associated with the legend.</param>
<param name="markerStep">The granularity of data point markers.</param>
<param name="xValue">The values to plot along the x-axis.</param>
<param name="xField">The name of the field for x-values.</param>
<param name="yValues">The values to plot along the y-axis.</param>
<param name="yFields">A comma-separated list of name or names of the field or fields for y-values.</param>
</member>
<member name="M:System.Web.Helpers.Chart.AddTitle(System.String,System.String)">
<summary>Adds a title to the chart.</summary>
<returns>The chart.</returns>
<param name="text">The title text.</param>
<param name="name">The unique name of the title.</param>
</member>
<member name="M:System.Web.Helpers.Chart.DataBindCrossTable(System.Collections.IEnumerable,System.String,System.String,System.String,System.String,System.String)">
<summary>Binds a chart to a data table, where one series is created for each unique value in a column.</summary>
<returns>The chart.</returns>
<param name="dataSource">The chart data source.</param>
<param name="groupByField">The name of the column that is used to group data into the series.</param>
<param name="xField">The name of the column for x-values.</param>
<param name="yFields">A comma-separated list of names of the columns for y-values.</param>
<param name="otherFields">Other data point properties that can be bound.</param>
<param name="pointSortOrder">The order in which the series will be sorted. The default is "Ascending".</param>
</member>
<member name="M:System.Web.Helpers.Chart.DataBindTable(System.Collections.IEnumerable,System.String)">
<summary>Creates and binds series data to the specified data table, and optionally populates multiple x-values.</summary>
<returns>The chart.</returns>
<param name="dataSource">The chart data source. This can be can be any <see cref="T:System.Collections.IEnumerable" /> object.</param>
<param name="xField">The name of the table column used for the series x-values.</param>
</member>
<member name="P:System.Web.Helpers.Chart.FileName">
<summary>Gets or sets the name of the file that contains the chart image.</summary>
<returns>The name of the file.</returns>
</member>
<member name="M:System.Web.Helpers.Chart.GetBytes(System.String)">
<summary>Returns a chart image as a byte array.</summary>
<returns>The chart.</returns>
<param name="format">The image format. The default is "jpeg".</param>
</member>
<member name="M:System.Web.Helpers.Chart.GetFromCache(System.String)">
<summary>Retrieves the specified chart from the cache.</summary>
<returns>The chart.</returns>
<param name="key">The ID of the cache item that contains the chart to retrieve. The key is set when you call the <see cref="M:System.Web.Helpers.Chart.SaveToCache(System.String,System.Int32,System.Boolean)" /> method.</param>
</member>
<member name="P:System.Web.Helpers.Chart.Height">
<summary>Gets or sets the height, in pixels, of the chart image.</summary>
<returns>The chart height.</returns>
</member>
<member name="M:System.Web.Helpers.Chart.Save(System.String,System.String)">
<summary>Saves a chart image to the specified file.</summary>
<returns>The chart.</returns>
<param name="path">The location and name of the image file.</param>
<param name="format">The image file format, such as "png" or "jpeg".</param>
</member>
<member name="M:System.Web.Helpers.Chart.SaveToCache(System.String,System.Int32,System.Boolean)">
<summary>Saves a chart in the system cache.</summary>
<returns>The ID of the cache item that contains the chart.</returns>
<param name="key">The ID of the chart in the cache.</param>
<param name="minutesToCache">The number of minutes to keep the chart image in the cache. The default is 20.</param>
<param name="slidingExpiration">true to indicate that the chart cache item's expiration is reset each time the item is accessed, or false to indicate that the expiration is based on an absolute interval since the time that the item was added to the cache. The default is true.</param>
</member>
<member name="M:System.Web.Helpers.Chart.SaveXml(System.String)">
<summary>Saves a chart as an XML file.</summary>
<returns>The chart.</returns>
<param name="path">The path and name of the XML file.</param>
</member>
<member name="M:System.Web.Helpers.Chart.SetXAxis(System.String,System.Double,System.Double)">
<summary>Sets values for the horizontal axis.</summary>
<returns>The chart.</returns>
<param name="title">The title of the x-axis.</param>
<param name="min">The minimum value for the x-axis.</param>
<param name="max">The maximum value for the x-axis.</param>
</member>
<member name="M:System.Web.Helpers.Chart.SetYAxis(System.String,System.Double,System.Double)">
<summary>Sets values for the vertical axis.</summary>
<returns>The chart.</returns>
<param name="title">The title of the y-axis.</param>
<param name="min">The minimum value for the y-axis.</param>
<param name="max">The maximum value for the y-axis.</param>
</member>
<member name="M:System.Web.Helpers.Chart.ToWebImage(System.String)">
<summary>Creates a <see cref="T:System.Web.Helpers.WebImage" /> object based on the current <see cref="T:System.Web.Helpers.Chart" /> object.</summary>
<returns>The chart.</returns>
<param name="format">The format of the image to save the <see cref="T:System.Web.Helpers.WebImage" /> object as. The default is "jpeg". The <paramref name="format" /> parameter is not case sensitive.</param>
</member>
<member name="P:System.Web.Helpers.Chart.Width">
<summary>Gets or set the width, in pixels, of the chart image.</summary>
<returns>The chart width.</returns>
</member>
<member name="M:System.Web.Helpers.Chart.Write(System.String)">
<summary>Renders the output of the <see cref="T:System.Web.Helpers.Chart" /> object as an image.</summary>
<returns>The chart.</returns>
<param name="format">The format of the image. The default is "jpeg".</param>
</member>
<member name="M:System.Web.Helpers.Chart.WriteFromCache(System.String,System.String)">
<summary>Renders the output of a <see cref="T:System.Web.Helpers.Chart" /> object that has been cached as an image.</summary>
<returns>The chart.</returns>
<param name="key">The ID of the chart in the cache.</param>
<param name="format">The format of the image. The default is "jpeg".</param>
</member>
<member name="T:System.Web.Helpers.ChartTheme">
<summary>Specifies visual themes for a <see cref="T:System.Web.Helpers.Chart" /> object.</summary>
</member>
<member name="F:System.Web.Helpers.ChartTheme.Blue">
<summary>A theme for 2D charting that features a visual container with a blue gradient, rounded edges, drop-shadowing, and high-contrast gridlines.</summary>
</member>
<member name="F:System.Web.Helpers.ChartTheme.Green">
<summary>A theme for 2D charting that features a visual container with a green gradient, rounded edges, drop-shadowing, and low-contrast gridlines.</summary>
</member>
<member name="F:System.Web.Helpers.ChartTheme.Vanilla">
<summary>A theme for 2D charting that features no visual container and no gridlines.</summary>
</member>
<member name="F:System.Web.Helpers.ChartTheme.Vanilla3D">
<summary>A theme for 3D charting that features no visual container, limited labeling and, sparse, high-contrast gridlines.</summary>
</member>
<member name="F:System.Web.Helpers.ChartTheme.Yellow">
<summary>A theme for 2D charting that features a visual container that has a yellow gradient, rounded edges, drop-shadowing, and high-contrast gridlines.</summary>
</member>
<member name="T:System.Web.Helpers.Crypto">
<summary>Provides methods to generate hash values and encrypt passwords or other sensitive data.</summary>
</member>
<member name="M:System.Web.Helpers.Crypto.GenerateSalt(System.Int32)">
<summary>Generates a cryptographically strong sequence of random byte values.</summary>
<returns>The generated salt value as a base-64-encoded string.</returns>
<param name="byteLength">The number of cryptographically random bytes to generate.</param>
</member>
<member name="M:System.Web.Helpers.Crypto.Hash(System.Byte[],System.String)">
<summary>Returns a hash value for the specified byte array.</summary>
<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="T:System.ArgumentNullException">
<paramref name="input" /> is null.</exception>
</member>
<member name="M:System.Web.Helpers.Crypto.Hash(System.String,System.String)">
<summary>Returns a hash value for the specified string.</summary>
<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="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="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="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="T:System.ArgumentNullException">
<paramref name="input" /> is null.</exception>
</member>
<member name="M:System.Web.Helpers.Crypto.VerifyHashedPassword(System.String,System.String)">
<summary>Determines whether the specified RFC 2898 hash and password are a cryptographic match.</summary>
<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="T:System.ArgumentNullException">
<paramref name="hashedPassword" /> or <paramref name="password" /> is null.</exception>
</member>
<member name="T:System.Web.Helpers.DynamicJsonArray">
<summary>Represents a series of values as a JavaScript-like array by using the dynamic capabilities of the Dynamic Language Runtime (DLR).</summary>
</member>
<member name="M:System.Web.Helpers.DynamicJsonArray.#ctor(System.Object[])">
<summary>Initializes a new instance of the <see cref="T:System.Web.Helpers.DynamicJsonArray" /> class using the specified array element values.</summary>
<param name="arrayValues">An array of objects that contains the values to add to the <see cref="T:System.Web.Helpers.DynamicJsonArray" /> instance.</param>
</member>
<member name="M:System.Web.Helpers.DynamicJsonArray.GetEnumerator">
<summary>Returns an enumerator that can be used to iterate through the elements of the <see cref="T:System.Web.Helpers.DynamicJsonArray" /> instance.</summary>
<returns>An enumerator that can be used to iterate through the elements of the JSON array.</returns>
</member>
<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>
</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>
<returns>The number of elements in the JSON array.</returns>
</member>
<member name="M:System.Web.Helpers.DynamicJsonArray.op_Implicit(System.Web.Helpers.DynamicJsonArray)~System.Object[]">
<summary>Converts a <see cref="T:System.Web.Helpers.DynamicJsonArray" /> instance to an array of objects.</summary>
<returns>The array of objects that represents the JSON array.</returns>
<param name="obj">The JSON array to convert.</param>
</member>
<member name="M:System.Web.Helpers.DynamicJsonArray.op_Implicit(System.Web.Helpers.DynamicJsonArray)~System.Array">
<summary>Converts a <see cref="T:System.Web.Helpers.DynamicJsonArray" /> instance to an array of objects.</summary>
<returns>The array of objects that represents the JSON array.</returns>
<param name="obj">The JSON array to convert.</param>
</member>
<member name="M:System.Web.Helpers.DynamicJsonArray.System#Collections#Generic#IEnumerable{T}#GetEnumerator">
<summary>Returns an enumerator that can be used to iterate through a collection.</summary>
<returns>An enumerator that can be used to iterate through the collection.</returns>
</member>
<member name="M:System.Web.Helpers.DynamicJsonArray.TryConvert(System.Dynamic.ConvertBinder,System.Object@)">
<summary>Converts the <see cref="T:System.Web.Helpers.DynamicJsonArray" /> instance to a compatible type.</summary>
<returns>true if the conversion was successful; otherwise, false.</returns>
<param name="binder">Provides information about the conversion operation.</param>
<param name="result">When this method returns, contains the result of the type conversion operation. This parameter is passed uninitialized.</param>
</member>
<member name="M:System.Web.Helpers.DynamicJsonArray.TryGetMember(System.Dynamic.GetMemberBinder,System.Object@)">
<summary>Tests the <see cref="T:System.Web.Helpers.DynamicJsonArray" /> instance for dynamic members (which are not supported) in a way that does not cause an exception to be thrown.</summary>
<returns>true in all cases.</returns>
<param name="binder">Provides information about the get operation.</param>
<param name="result">When this method returns, contains null. This parameter is passed uninitialized.</param>
</member>
<member name="T:System.Web.Helpers.DynamicJsonObject">
<summary>Represents a collection of values as a JavaScript-like object by using the capabilities of the Dynamic Language Runtime.</summary>
</member>
<member name="M:System.Web.Helpers.DynamicJsonObject.#ctor(System.Collections.Generic.IDictionary{System.String,System.Object})">
<summary>Initializes a new instance of the <see cref="T:System.Web.Helpers.DynamicJsonObject" /> class using the specified field values.</summary>
<param name="values">A dictionary of property names and values to add to the <see cref="T:System.Web.Helpers.DynamicJsonObject" /> instance as dynamic members.</param>
</member>
<member name="M:System.Web.Helpers.DynamicJsonObject.GetDynamicMemberNames">
<summary>Returns a list that contains the name of all dynamic members (JSON fields) of the <see cref="T:System.Web.Helpers.DynamicJsonObject" /> instance.</summary>
<returns>A list that contains the name of every dynamic member (JSON field).</returns>
</member>
<member name="M:System.Web.Helpers.DynamicJsonObject.TryConvert(System.Dynamic.ConvertBinder,System.Object@)">
<summary>Converts the <see cref="T:System.Web.Helpers.DynamicJsonObject" /> instance to a compatible type.</summary>
<returns>true in all cases.</returns>
<param name="binder">Provides information about the conversion operation.</param>
<param name="result">When this method returns, contains the result of the type conversion operation. This parameter is passed uninitialized.</param>
<exception cref="T:System.InvalidOperationException">The <see cref="T:System.Web.Helpers.DynamicJsonObject" /> instance could not be converted to the specified type.</exception>
</member>
<member name="M:System.Web.Helpers.DynamicJsonObject.TryGetIndex(System.Dynamic.GetIndexBinder,System.Object[],System.Object@)">
<summary>Gets the value of a <see cref="T:System.Web.Helpers.DynamicJsonObject" /> field using the specified index.</summary>
<returns>true in all cases.</returns>
<param name="binder">Provides information about the indexed get operation.</param>
<param name="indexes">An array that contains a single object that indexes the field by name. The object must be convertible to a string that specifies the name of the JSON field to return. If multiple indexes are specified, <paramref name="result" /> contains null when this method returns.</param>
<param name="result">When this method returns, contains the value of the indexed field, or null if the get operation was unsuccessful. This parameter is passed uninitialized.</param>
</member>
<member name="M:System.Web.Helpers.DynamicJsonObject.TryGetMember(System.Dynamic.GetMemberBinder,System.Object@)">
<summary>Gets the value of a <see cref="T:System.Web.Helpers.DynamicJsonObject" /> field using the specified name.</summary>
<returns>true in all cases.</returns>
<param name="binder">Provides information about the get operation.</param>
<param name="result">When this method returns, contains the value of the field, or null if the get operation was unsuccessful. This parameter is passed uninitialized.</param>
</member>
<member name="M:System.Web.Helpers.DynamicJsonObject.TrySetIndex(System.Dynamic.SetIndexBinder,System.Object[],System.Object)">
<summary>Sets the value of a <see cref="T:System.Web.Helpers.DynamicJsonObject" /> field using the specified index.</summary>
<returns>true in all cases.</returns>
<param name="binder">Provides information about the indexed set operation.</param>
<param name="indexes">An array that contains a single object that indexes the field by name. The object must be convertible to a string that specifies the name of the JSON field to return. If multiple indexes are specified, no field is changed or added.</param>
<param name="value">The value to set the field to.</param>
</member>
<member name="M:System.Web.Helpers.DynamicJsonObject.TrySetMember(System.Dynamic.SetMemberBinder,System.Object)">
<summary>Sets the value of a <see cref="T:System.Web.Helpers.DynamicJsonObject" /> field using the specified name.</summary>
<returns>true in all cases.</returns>
<param name="binder">Provides information about the set operation.</param>
<param name="value">The value to set the field to.</param>
</member>
<member name="T:System.Web.Helpers.Json">
<summary>Provides methods for working with data in JavaScript Object Notation (JSON) format.</summary>
</member>
<member name="M:System.Web.Helpers.Json.Decode``1(System.String)">
<summary>Converts data in JavaScript Object Notation (JSON) format into the specified strongly typed data list.</summary>
<returns>The JSON-encoded data converted to a strongly typed list.</returns>
<param name="value">The JSON-encoded string to convert.</param>
<typeparam name="T">The type of the strongly typed list to convert JSON data into.</typeparam>
</member>
<member name="M:System.Web.Helpers.Json.Decode(System.String)">
<summary>Converts data in JavaScript Object Notation (JSON) format into a data object.</summary>
<returns>The JSON-encoded data converted to a data object.</returns>
<param name="value">The JSON-encoded string to convert.</param>
</member>
<member name="M:System.Web.Helpers.Json.Decode(System.String,System.Type)">
<summary>Converts data in JavaScript Object Notation (JSON) format into a data object of a specified type.</summary>
<returns>The JSON-encoded data converted to the specified type.</returns>
<param name="value">The JSON-encoded string to convert.</param>
<param name="targetType">The type that the <paramref name="value" /> data should be converted to.</param>
</member>
<member name="M:System.Web.Helpers.Json.Encode(System.Object)">
<summary>Converts a data object to a string that is in the JavaScript Object Notation (JSON) format.</summary>
<returns>Returns a string of data converted to the JSON format.</returns>
<param name="value">The data object to convert.</param>
</member>
<member name="M:System.Web.Helpers.Json.Write(System.Object,System.IO.TextWriter)">
<summary>Converts a data object to a string in JavaScript Object Notation (JSON) format and adds the string to the specified <see cref="T:System.IO.TextWriter" /> object.</summary>
<param name="value">The data object to convert.</param>
<param name="writer">The object that contains the converted JSON data.</param>
</member>
<member name="T:System.Web.Helpers.ObjectInfo">
<summary>Renders the property names and values of the specified object and of any subobjects that it references.</summary>
</member>
<member name="M:System.Web.Helpers.ObjectInfo.Print(System.Object,System.Int32,System.Int32)">
<summary>Renders the property names and values of the specified object and of any subobjects.</summary>
<returns>For a simple variable, returns the type and the value. For an object that contains multiple items, returns the property name or key and the value for each property.</returns>
<param name="value">The object to render information for.</param>
<param name="depth">Optional. Specifies the depth of nested subobjects to render information for. The default is 10.</param>
<param name="enumerationLength">Optional. Specifies the maximum number of characters that the method displays for object values. The default is 1000.</param>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="depth" /> is less than zero.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="enumerationLength" /> is less than or equal to zero.</exception>
</member>
<member name="T:System.Web.Helpers.ServerInfo">
<summary>Displays information about the web server environment that hosts the current web page.</summary>
</member>
<member name="M:System.Web.Helpers.ServerInfo.GetHtml">
<summary>Displays information about the web server environment.</summary>
<returns>A string of name-value pairs that contains information about the web server. </returns>
</member>
<member name="T:System.Web.Helpers.SortDirection">
<summary>Specifies the direction in which to sort a list of items.</summary>
</member>
<member name="F:System.Web.Helpers.SortDirection.Ascending">
<summary>Sort from smallest to largest —for example, from 1 to 10.</summary>
</member>
<member name="F:System.Web.Helpers.SortDirection.Descending">
<summary>Sort from largest to smallest — for example, from 10 to 1.</summary>
</member>
<member name="T:System.Web.Helpers.WebCache">
<summary>Provides a cache to store frequently accessed data.</summary>
</member>
<member name="M:System.Web.Helpers.WebCache.Get(System.String)">
<summary>Retrieves the specified item from the <see cref="T:System.Web.Helpers.WebCache" /> object.</summary>
<returns>The item retrieved from the cache, or null if the item is not found.</returns>
<param name="key">The identifier for the cache item to retrieve.</param>
</member>
<member name="M:System.Web.Helpers.WebCache.Remove(System.String)">
<summary>Removes the specified item from the <see cref="T:System.Web.Helpers.WebCache" /> object.</summary>
<returns>The item removed from the <see cref="T:System.Web.Helpers.WebCache" /> object. If the item is not found, returns null.</returns>
<param name="key">The identifier for the cache item to remove.</param>
</member>
<member name="M:System.Web.Helpers.WebCache.Set(System.String,System.Object,System.Int32,System.Boolean)">
<summary>Inserts an item into the <see cref="T:System.Web.Helpers.WebCache" /> object.</summary>
<param name="key">The identifier for the cache item.</param>
<param name="value">The data to insert into the cache.</param>
<param name="minutesToCache">Optional. The number of minutes to keep an item in the cache. The default is 20.</param>
<param name="slidingExpiration">Optional. true to indicate that the cache item expiration is reset each time the item is accessed, or false to indicate that the expiration is based the absolute time since the item was added to the cache. The default is true. In that case, if you also use the default value for the <paramref name="minutesToCache" /> parameter, a cached item expires 20 minutes after it was last accessed.</param>
<exception cref="T:System.ArgumentOutOfRangeException">The value of <paramref name="minutesToCache" /> is less than or equal to zero.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">Sliding expiration is enabled and the value of <paramref name="minutesToCache" /> is greater than a year.</exception>
</member>
<member name="T:System.Web.Helpers.WebGrid">
<summary>Displays data on a web page using an HTML table element.</summary>
</member>
<member name="M:System.Web.Helpers.WebGrid.#ctor(System.Collections.Generic.IEnumerable{System.Object},System.Collections.Generic.IEnumerable{System.String},System.String,System.Int32,System.Boolean,System.Boolean,System.String,System.String,System.String,System.String,System.String,System.String,System.String)">
<summary>Initializes a new instance of the <see cref="T:System.Web.Helpers.WebGrid" /> class.</summary>
<param name="source">The data to display.</param>
<param name="columnNames">A collection that contains the names of the data columns to display. By default, this value is auto-populated according to the values in the <paramref name="source" /> parameter.</param>
<param name="defaultSort">The name of the data column that is used to sort the grid by default.</param>
<param name="rowsPerPage">The number of rows that are displayed on each page of the grid when paging is enabled. The default is 10.</param>
<param name="canPage">true to specify that paging is enabled for the <see cref="T:System.Web.Helpers.WebGrid" /> instance; otherwise false. The default is true. </param>
<param name="canSort">true to specify that sorting is enabled for the <see cref="T:System.Web.Helpers.WebGrid" /> instance; otherwise, false. The default is true.</param>
<param name="ajaxUpdateContainerId">The value of the HTML id attribute that is used to mark the HTML element that gets dynamic Ajax updates that are associated with the <see cref="T:System.Web.Helpers.WebGrid" /> instance.</param>
<param name="ajaxUpdateCallback">The name of the JavaScript function that is called after the HTML element specified by the <see cref="P:System.Web.Helpers.WebGrid.AjaxUpdateContainerId" /> property has been updated. If the name of a function is not provided, no function will be called. If the specified function does not exist, a JavaScript error will occur if it is invoked.</param>
<param name="fieldNamePrefix">The prefix that is applied to all query-string fields that are associated with the <see cref="T:System.Web.Helpers.WebGrid" /> instance. This value is used in order to support multiple <see cref="T:System.Web.Helpers.WebGrid" /> instances on the same web page.</param>
<param name="pageFieldName">The name of the query-string field that is used to specify the current page of the <see cref="T:System.Web.Helpers.WebGrid" /> instance.</param>
<param name="selectionFieldName">The name of the query-string field that is used to specify the currently selected row of the <see cref="T:System.Web.Helpers.WebGrid" /> instance.</param>
<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}})">
<summary>Adds a specific sort function for a given column.</summary>
<returns>The current grid, with the new custom sorter applied.</returns>
<param name="columnName">The column name (as used for sorting)</param>
<param name="keySelector">The function used to select a key to sort by, for each element in the grid's source.</param>
<typeparam name="TElement">The type of elements in the grid's source.</typeparam>
<typeparam name="TProperty">The column type, usually inferred from the keySelector function's return type.</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>
</member>
<member name="P:System.Web.Helpers.WebGrid.AjaxUpdateContainerId">
<summary>Gets the value of the HTML id attribute that marks an HTML element on the web page that gets dynamic Ajax updates that are associated with the <see cref="T:System.Web.Helpers.WebGrid" /> instance.</summary>
<returns>The value of the id attribute.</returns>
</member>
<member name="M:System.Web.Helpers.WebGrid.Bind(System.Collections.Generic.IEnumerable{System.Object},System.Collections.Generic.IEnumerable{System.String},System.Boolean,System.Int32)">
<summary>Binds the specified data to the <see cref="T:System.Web.Helpers.WebGrid" /> instance.</summary>
<returns>The bound and populated <see cref="T:System.Web.Helpers.WebGrid" /> instance.</returns>
<param name="source">The data to display.</param>
<param name="columnNames">A collection that contains the names of the data columns to bind.</param>
<param name="autoSortAndPage">true to enable sorting and paging of the <see cref="T:System.Web.Helpers.WebGrid" /> instance; otherwise, false.</param>
<param name="rowCount">The number of rows to display on each page of the grid.</param>
</member>
<member name="P:System.Web.Helpers.WebGrid.CanSort">
<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{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>
<param name="header">The text that is rendered in the header of the HTML table column that is associated with the <see cref="T:System.Web.Helpers.WebGridColumn" /> instance.</param>
<param name="format">The function that is used to format the data values that are associated with the <see cref="T:System.Web.Helpers.WebGridColumn" /> instance.</param>
<param name="style">A string that specifies the name of the CSS class that is used to style the HTML table cells that are associated with the <see cref="T:System.Web.Helpers.WebGridColumn" /> instance.</param>
<param name="canSort">true to enable sorting in the <see cref="T:System.Web.Helpers.WebGrid" /> instance by the data values that are associated with the <see cref="T:System.Web.Helpers.WebGridColumn" /> instance; otherwise, false. The default is true.</param>
</member>
<member name="P:System.Web.Helpers.WebGrid.ColumnNames">
<summary>Gets a collection that contains the name of each data column that is bound to the <see cref="T:System.Web.Helpers.WebGrid" /> instance.</summary>
<returns>The collection of data column names.</returns>
</member>
<member name="M:System.Web.Helpers.WebGrid.Columns(System.Web.Helpers.WebGridColumn[])">
<summary>Returns an array that contains the specified <see cref="T:System.Web.Helpers.WebGridColumn" /> instances.</summary>
<returns>An array of columns.</returns>
<param name="columnSet">A variable number of <see cref="T:System.Web.Helpers.WebGridColumn" /> column instances.</param>
</member>
<member name="P:System.Web.Helpers.WebGrid.FieldNamePrefix">
<summary>Gets the prefix that is applied to all query-string fields that are associated with the <see cref="T:System.Web.Helpers.WebGrid" /> instance.</summary>
<returns>The query-string field prefix of the <see cref="T:System.Web.Helpers.WebGrid" /> instance.</returns>
</member>
<member name="M:System.Web.Helpers.WebGrid.GetContainerUpdateScript(System.String)">
<summary>Returns a JavaScript statement that can be used to update the HTML element that is associated with the <see cref="T:System.Web.Helpers.WebGrid" /> instance on the specified web page.</summary>
<returns>A JavaScript statement that can be used to update the HTML element in a web page that is associated with the <see cref="T:System.Web.Helpers.WebGrid" /> instance.</returns>
<param name="path">The URL of the web page that contains the <see cref="T:System.Web.Helpers.WebGrid" /> instance that is being updated. The URL can include query-string arguments.</param>
</member>
<member name="M:System.Web.Helpers.WebGrid.GetHtml(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.Web.Helpers.WebGridPagerModes,System.String,System.String,System.String,System.String,System.Int32,System.Object)">
<summary>Returns the HTML markup that is used to render the <see cref="T:System.Web.Helpers.WebGrid" /> instance and using the specified paging options.</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>
<param name="headerStyle">The name of the CSS class that is used to style the table header.</param>
<param name="footerStyle">The name of the CSS class that is used to style the table footer.</param>
<param name="rowStyle">The name of the CSS class that is used to style each table row.</param>
<param name="alternatingRowStyle">The name of the CSS class that is used to style even-numbered table rows.</param>
<param name="selectedRowStyle">The name of the CSS class that is used to style the selected table row. (Only one row can be selected at a time.)</param>
<param name="caption">The table caption.</param>
<param name="displayHeader">true to display the table header; otherwise, false. The default is true.</param>
<param name="fillEmptyRows">true to insert additional rows in the last page when there are insufficient data items to fill the last page; otherwise, false. The default is false. Additional rows are populated using the text specified by the <paramref name="emptyRowCellValue" /> parameter.</param>
<param name="emptyRowCellValue">The text that is used to populate additional rows in a page when there are insufficient data items to fill the last page. The <paramref name="fillEmptyRows" /> parameter must be set to true to display these additional rows.</param>
<param name="columns">A collection of <see cref="T:System.Web.Helpers.WebGridColumn" /> instances that specify how each column is displayed. This includes which data column is associated with each grid column, and how to format the data values that each grid column contains.</param>
<param name="exclusions">A collection that contains the names of the data columns to exclude when the grid auto-populates columns.</param>
<param name="mode">A bitwise combination of the enumeration values that specify methods that are provided for moving between pages of the <see cref="T:System.Web.Helpers.WebGrid" /> instance.</param>
<param name="firstText">The text for the HTML link element that is used to link to the first page of the <see cref="T:System.Web.Helpers.WebGrid" /> instance. The <see cref="F:System.Web.Helpers.WebGridPagerModes.FirstLast" /> flag of the <paramref name="mode" /> parameter must be set to display this page navigation element.</param>
<param name="previousText">The text for the HTML link element that is used to link to previous page of the <see cref="T:System.Web.Helpers.WebGrid" /> instance. The <see cref="F:System.Web.Helpers.WebGridPagerModes.NextPrevious" /> flag of the <paramref name="mode" /> parameter must be set to display this page navigation element.</param>
<param name="nextText">The text for the HTML link element that is used to link to the next page of the <see cref="T:System.Web.Helpers.WebGrid" /> instance. The <see cref="F:System.Web.Helpers.WebGridPagerModes.NextPrevious" /> flag of the <paramref name="mode" /> parameter must be set to display this page navigation element.</param>
<param name="lastText">The text for the HTML link element that is used to link to the last page of the <see cref="T:System.Web.Helpers.WebGrid" /> instance. The <see cref="F:System.Web.Helpers.WebGridPagerModes.FirstLast" /> flag of the <paramref name="mode" /> parameter must be set to display this page navigation element.</param>
<param name="numericLinksCount">The number of numeric page links that are provided to nearby <see cref="T:System.Web.Helpers.WebGrid" /> pages. The text of each numeric page link contains the page number. The <see cref="F:System.Web.Helpers.WebGridPagerModes.Numeric" /> flag of the <paramref name="mode" /> parameter must be set to display these page navigation elements.</param>
<param name="htmlAttributes">An object that represents a collection of attributes (names and values) to set for the HTML table element that represents the <see cref="T:System.Web.Helpers.WebGrid" /> instance.</param>
</member>
<member name="M:System.Web.Helpers.WebGrid.GetPageUrl(System.Int32)">
<summary>Returns a URL that can be used to display the specified data page of the <see cref="T:System.Web.Helpers.WebGrid" /> instance.</summary>
<returns>A URL that can be used to display the specified data page of the grid.</returns>
<param name="pageIndex">The index of the <see cref="T:System.Web.Helpers.WebGrid" /> page to display.</param>
</member>
<member name="M:System.Web.Helpers.WebGrid.GetSortUrl(System.String)">
<summary>Returns a URL that can be used to sort the <see cref="T:System.Web.Helpers.WebGrid" /> instance by the specified column.</summary>
<returns>A URL that can be used to sort the grid.</returns>
<param name="column">The name of the data column to sort by.</param>
</member>
<member name="P:System.Web.Helpers.WebGrid.HasSelection">
<summary>Gets a value that indicates whether a row in the <see cref="T:System.Web.Helpers.WebGrid" /> instance is selected.</summary>
<returns>true if a row is currently selected; otherwise, false.</returns>
</member>
<member name="P:System.Web.Helpers.WebGrid.IsAjaxEnabled">
<summary>Returns a value that indicates whether the <see cref="T:System.Web.Helpers.WebGrid" /> instance can use Ajax calls to refresh the display.</summary>
<returns>true if the instance supports Ajax calls; otherwise, false..</returns>
</member>
<member name="P:System.Web.Helpers.WebGrid.PageCount">
<summary>Gets the number of pages that the <see cref="T:System.Web.Helpers.WebGrid" /> instance contains.</summary>
<returns>The page count.</returns>
</member>
<member name="P:System.Web.Helpers.WebGrid.PageFieldName">
<summary>Gets the full name of the query-string field that is used to specify the current page of the <see cref="T:System.Web.Helpers.WebGrid" /> instance.</summary>
<returns>The full name of the query string field that is used to specify the current page of the grid.</returns>
</member>
<member name="P:System.Web.Helpers.WebGrid.PageIndex">
<summary>Gets or sets the index of the current page of the <see cref="T:System.Web.Helpers.WebGrid" /> instance.</summary>
<returns>The index of the current page.</returns>
</member>
<member name="M:System.Web.Helpers.WebGrid.Pager(System.Web.Helpers.WebGridPagerModes,System.String,System.String,System.String,System.String,System.Int32)">
<summary>Returns the HTML markup that is used to provide the specified paging support for the <see cref="T:System.Web.Helpers.WebGrid" /> instance.</summary>
<returns>The HTML markup that provides paging support for the grid.</returns>
<param name="mode">A bitwise combination of the enumeration values that specify the methods that are provided for moving between the pages of the grid. The default is the bitwise OR of the <see cref="F:System.Web.Helpers.WebGridPagerModes.NextPrevious" /> and <see cref="F:System.Web.Helpers.WebGridPagerModes.Numeric" /> flags.</param>
<param name="firstText">The text for the HTML link element that navigates to the first page of the grid.</param>
<param name="previousText">The text for the HTML link element that navigates to the previous page of the grid.</param>
<param name="nextText">The text for the HTML link element that navigates to the next page of the grid.</param>
<param name="lastText">The text for the HTML link element that navigates to the last page of the grid.</param>
<param name="numericLinksCount">The number of numeric page links to display. The default is 5.</param>
</member>
<member name="P:System.Web.Helpers.WebGrid.Rows">
<summary>Gets a list that contains the rows that are on the current page of the <see cref="T:System.Web.Helpers.WebGrid" /> instance after the grid has been sorted.</summary>
<returns>The list of rows.</returns>
</member>
<member name="P:System.Web.Helpers.WebGrid.RowsPerPage">
<summary>Gets the number of rows that are displayed on each page of the <see cref="T:System.Web.Helpers.WebGrid" /> instance.</summary>
<returns>The number of rows that are displayed on each page of the grid.</returns>
</member>
<member name="P:System.Web.Helpers.WebGrid.SelectedIndex">
<summary>Gets or sets the index of the selected row relative to the current page of the <see cref="T:System.Web.Helpers.WebGrid" /> instance.</summary>
<returns>The index of the selected row relative to the current page.</returns>
</member>
<member name="P:System.Web.Helpers.WebGrid.SelectedRow">
<summary>Gets the currently selected row of the <see cref="T:System.Web.Helpers.WebGrid" /> instance.</summary>
<returns>The currently selected row.</returns>
</member>
<member name="P:System.Web.Helpers.WebGrid.SelectionFieldName">
<summary>Gets the full name of the query-string field that is used to specify the selected row of the <see cref="T:System.Web.Helpers.WebGrid" /> instance.</summary>
<returns>The full name of the query string field that is used to specify the selected row of the grid.</returns>
</member>
<member name="P:System.Web.Helpers.WebGrid.SortColumn">
<summary>Gets or sets the name of the data column that the <see cref="T:System.Web.Helpers.WebGrid" /> instance is sorted by.</summary>
<returns>The name of the data column that is used to sort the grid.</returns>
</member>
<member name="P:System.Web.Helpers.WebGrid.SortDirection">
<summary>Gets or sets the direction in which the <see cref="T:System.Web.Helpers.WebGrid" /> instance is sorted.</summary>
<returns>The sort direction.</returns>
</member>
<member name="P:System.Web.Helpers.WebGrid.SortDirectionFieldName">
<summary>Gets the full name of the query-string field that is used to specify the sort direction of the <see cref="T:System.Web.Helpers.WebGrid" /> instance.</summary>
<returns>The full name of the query string field that is used to specify the sort direction of the grid.</returns>
</member>
<member name="P:System.Web.Helpers.WebGrid.SortFieldName">
<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{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>
<param name="headerStyle">The name of the CSS class that is used to style the table header.</param>
<param name="footerStyle">The name of the CSS class that is used to style the table footer.</param>
<param name="rowStyle">The name of the CSS class that is used to style each table row.</param>
<param name="alternatingRowStyle">The name of the CSS class that is used to style even-numbered table rows.</param>
<param name="selectedRowStyle">The name of the CSS class that is used use to style the selected table row.</param>
<param name="caption">The table caption.</param>
<param name="displayHeader">true to display the table header; otherwise, false. The default is true.</param>
<param name="fillEmptyRows">true to insert additional rows in the last page when there are insufficient data items to fill the last page; otherwise, false. The default is false. Additional rows are populated using the text specified by the <paramref name="emptyRowCellValue" /> parameter.</param>
<param name="emptyRowCellValue">The text that is used to populate additional rows in the last page when there are insufficient data items to fill the last page. The <paramref name="fillEmptyRows" /> parameter must be set to true to display these additional rows.</param>
<param name="columns">A collection of <see cref="T:System.Web.Helpers.WebGridColumn" /> instances that specify how each column is displayed. This includes which data column is associated with each grid column, and how to format the data values that each grid column contains.</param>
<param name="exclusions">A collection that contains the names of the data columns to exclude when the grid auto-populates columns.</param>
<param name="footer">A function that returns the HTML markup that is used to render the table footer.</param>
<param name="htmlAttributes">An object that represents a collection of attributes (names and values) to set for the HTML table element that represents the <see cref="T:System.Web.Helpers.WebGrid" /> instance.</param>
</member>
<member name="P:System.Web.Helpers.WebGrid.TotalRowCount">
<summary>Gets the total number of rows that the <see cref="T:System.Web.Helpers.WebGrid" /> instance contains.</summary>
<returns>The total number of rows in the grid. This value includes all rows from every page, but does not include the additional rows inserted in the last page when there are insufficient data items to fill the last page.</returns>
</member>
<member name="T:System.Web.Helpers.WebGridColumn">
<summary>Represents a column in a <see cref="T:System.Web.Helpers.WebGrid" /> instance.</summary>
</member>
<member name="M:System.Web.Helpers.WebGridColumn.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Web.Helpers.WebGridColumn" /> class.</summary>
</member>
<member name="P:System.Web.Helpers.WebGridColumn.CanSort">
<summary>Gets or sets a value that indicates whether the <see cref="T:System.Web.Helpers.WebGrid" /> column can be sorted.</summary>
<returns>true to indicate that the column can be sorted; otherwise, false.</returns>
</member>
<member name="P:System.Web.Helpers.WebGridColumn.ColumnName">
<summary>Gets or sets the name of the data item that is associated with the <see cref="T:System.Web.Helpers.WebGrid" /> column.</summary>
<returns>The name of the data item.</returns>
</member>
<member name="P:System.Web.Helpers.WebGridColumn.Format">
<summary>Gets or sets a function that is used to format the data item that is associated with the <see cref="T:System.Web.Helpers.WebGrid" /> column.</summary>
<returns>The function that is used to format that data item that is associated with the column.</returns>
</member>
<member name="P:System.Web.Helpers.WebGridColumn.Header">
<summary>Gets or sets the text that is rendered in the header of the <see cref="T:System.Web.Helpers.WebGrid" /> column.</summary>
<returns>The text that is rendered to the column header.</returns>
</member>
<member name="P:System.Web.Helpers.WebGridColumn.Style">
<summary>Gets or sets the CSS class attribute that is rendered as part of the HTML table cells that are associated with the <see cref="T:System.Web.Helpers.WebGrid" /> column.</summary>
<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.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.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.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>
</member>
<member name="M:System.Web.Helpers.WebGridRow.#ctor(System.Web.Helpers.WebGrid,System.Object,System.Int32)">
<summary>Initializes a new instance of the <see cref="T:System.Web.Helpers.WebGridRow" /> class using the specified <see cref="T:System.Web.Helpers.WebGrid" /> instance, row value, and index.</summary>
<param name="webGrid">The <see cref="T:System.Web.Helpers.WebGrid" /> instance that contains the row.</param>
<param name="value">An object that contains a property member for each value in the row.</param>
<param name="rowIndex">The index of the row.</param>
</member>
<member name="M:System.Web.Helpers.WebGridRow.GetEnumerator">
<summary>Returns an enumerator that can be used to iterate through the values of the <see cref="T:System.Web.Helpers.WebGridRow" /> instance.</summary>
<returns>An enumerator that can be used to iterate through the values of the row.</returns>
</member>
<member name="M:System.Web.Helpers.WebGridRow.GetSelectLink(System.String)">
<summary>Returns an HTML element (a link) that users can use to select the row.</summary>
<returns>The link that users can click to select the row.</returns>
<param name="text">The inner text of the link element. If <paramref name="text" /> is empty or null, "Select" is used.</param>
</member>
<member name="M:System.Web.Helpers.WebGridRow.GetSelectUrl">
<summary>Returns the URL that can be used to select the row.</summary>
<returns>The URL that is used to select a row.</returns>
</member>
<member name="P:System.Web.Helpers.WebGridRow.Item(System.Int32)">
<summary>Returns the value at the specified index in the <see cref="T:System.Web.Helpers.WebGridRow" /> instance.</summary>
<returns>The value at the specified index.</returns>
<param name="index">The zero-based index of the value in the row to return.</param>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="index" /> is less than 0 or greater than or equal to the number of values in the row.</exception>
</member>
<member name="P:System.Web.Helpers.WebGridRow.Item(System.String)">
<summary>Returns the value that has the specified name in the <see cref="T:System.Web.Helpers.WebGridRow" /> instance.</summary>
<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 Nothing or empty.</exception>
<exception cref="T:System.InvalidOperationException">
<paramref name="name" /> specifies a value that does not exist.</exception>
</member>
<member name="M:System.Web.Helpers.WebGridRow.System#Collections#IEnumerable#GetEnumerator">
<summary>Returns an enumerator that can be used to iterate through a collection.</summary>
<returns>An enumerator that can be used to iterate through the collection.</returns>
</member>
<member name="M:System.Web.Helpers.WebGridRow.ToString">
<summary>Returns a string that represents all of the values of the <see cref="T:System.Web.Helpers.WebGridRow" /> instance.</summary>
<returns>A string that represents the row's values.</returns>
</member>
<member name="M:System.Web.Helpers.WebGridRow.TryGetMember(System.Dynamic.GetMemberBinder,System.Object@)">
<summary>Returns the value of a <see cref="T:System.Web.Helpers.WebGridRow" /> member that is described by the specified binder.</summary>
<returns>true if the value of the item was successfully retrieved; otherwise, false.</returns>
<param name="binder">The getter of the bound property member.</param>
<param name="result">When this method returns, contains an object that holds the value of the item described by <paramref name="binder" />. This parameter is passed uninitialized.</param>
</member>
<member name="P:System.Web.Helpers.WebGridRow.Value">
<summary>Gets an object that contains a property member for each value in the row.</summary>
<returns>An object that contains each value in the row as a property.</returns>
</member>
<member name="P:System.Web.Helpers.WebGridRow.WebGrid">
<summary>Gets the <see cref="T:System.Web.Helpers.WebGrid" /> instance that the row belongs to.</summary>
<returns>The <see cref="T:System.Web.Helpers.WebGrid" /> instance that contains the row.</returns>
</member>
<member name="T:System.Web.Helpers.WebImage">
<summary>Represents an object that lets you display and manage images in a web page.</summary>
</member>
<member name="M:System.Web.Helpers.WebImage.#ctor(System.Byte[])">
<summary>Initializes a new instance of the <see cref="T:System.Web.Helpers.WebImage" /> class using a byte array to represent the image.</summary>
<param name="content">The image.</param>
</member>
<member name="M:System.Web.Helpers.WebImage.#ctor(System.IO.Stream)">
<summary>Initializes a new instance of the <see cref="T:System.Web.Helpers.WebImage" /> class using a stream to represent the image.</summary>
<param name="imageStream">The image.</param>
</member>
<member name="M:System.Web.Helpers.WebImage.#ctor(System.String)">
<summary>Initializes a new instance of the <see cref="T:System.Web.Helpers.WebImage" /> class using a path to represent the image location.</summary>
<param name="filePath">The path of the file that contains the image.</param>
</member>
<member name="M:System.Web.Helpers.WebImage.AddImageWatermark(System.String,System.Int32,System.Int32,System.String,System.String,System.Int32,System.Int32)">
<summary>Adds a watermark image using a path to the watermark image.</summary>
<returns>The watermarked image.</returns>
<param name="watermarkImageFilePath">The path of a file that contains the watermark image.</param>
<param name="width">The width, in pixels, of the watermark image.</param>
<param name="height">The height, in pixels, of the watermark image.</param>
<param name="horizontalAlign">The horizontal alignment for watermark image. Values can be "Left", "Right", or "Center".</param>
<param name="verticalAlign">The vertical alignment for the watermark image. Values can be "Top", "Middle", or "Bottom".</param>
<param name="opacity">The opacity for the watermark image, specified as a value between 0 and 100.</param>
<param name="padding">The size, in pixels, of the padding around the watermark image.</param>
</member>
<member name="M:System.Web.Helpers.WebImage.AddImageWatermark(System.Web.Helpers.WebImage,System.Int32,System.Int32,System.String,System.String,System.Int32,System.Int32)">
<summary>Adds a watermark image using the specified image object.</summary>
<returns>The watermarked image.</returns>
<param name="watermarkImage">A <see cref="T:System.Web.Helpers.WebImage" /> object.</param>
<param name="width">The width, in pixels, of the watermark image.</param>
<param name="height">The height, in pixels, of the watermark image.</param>
<param name="horizontalAlign">The horizontal alignment for watermark image. Values can be "Left", "Right", or "Center".</param>
<param name="verticalAlign">The vertical alignment for the watermark image. Values can be "Top", "Middle", or "Bottom".</param>
<param name="opacity">The opacity for the watermark image, specified as a value between 0 and 100.</param>
<param name="padding">The size, in pixels, of the padding around the watermark image.</param>
</member>
<member name="M:System.Web.Helpers.WebImage.AddTextWatermark(System.String,System.String,System.Int32,System.String,System.String,System.String,System.String,System.Int32,System.Int32)">
<summary>Adds watermark text to the image.</summary>
<returns>The watermarked image.</returns>
<param name="text">The text to use as a watermark.</param>
<param name="fontColor">The color of the watermark text.</param>
<param name="fontSize">The font size of the watermark text.</param>
<param name="fontStyle">The font style of the watermark text.</param>
<param name="fontFamily">The font type of the watermark text.</param>
<param name="horizontalAlign">The horizontal alignment for watermark text. Values can be "Left", "Right", or "Center".</param>
<param name="verticalAlign">The vertical alignment for the watermark text. Values can be "Top", "Middle", or "Bottom".</param>
<param name="opacity">The opacity for the watermark image, specified as a value between 0 and 100.</param>
<param name="padding">The size, in pixels, of the padding around the watermark text.</param>
</member>
<member name="M:System.Web.Helpers.WebImage.Clone">
<summary>Copies the <see cref="T:System.Web.Helpers.WebImage" /> object.</summary>
<returns>The image.</returns>
</member>
<member name="M:System.Web.Helpers.WebImage.Crop(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>Crops an image.</summary>
<returns>The cropped image.</returns>
<param name="top">The number of pixels to remove from the top.</param>
<param name="left">The number of pixels to remove from the left.</param>
<param name="bottom">The number of pixels to remove from the bottom.</param>
<param name="right">The number of pixels to remove from the right.</param>
</member>
<member name="P:System.Web.Helpers.WebImage.FileName">
<summary>Gets or sets the file name of the <see cref="T:System.Web.Helpers.WebImage" /> object.</summary>
<returns>The file name.</returns>
</member>
<member name="M:System.Web.Helpers.WebImage.FlipHorizontal">
<summary>Flips an image horizontally.</summary>
<returns>The flipped image.</returns>
</member>
<member name="M:System.Web.Helpers.WebImage.FlipVertical">
<summary>Flips an image vertically.</summary>
<returns>The flipped image.</returns>
</member>
<member name="M:System.Web.Helpers.WebImage.GetBytes(System.String)">
<summary>Returns the image as a byte array.</summary>
<returns>The image.</returns>
<param name="requestedFormat">The <see cref="P:System.Web.Helpers.WebImage.ImageFormat" /> value of the <see cref="T:System.Web.Helpers.WebImage" /> object.</param>
</member>
<member name="M:System.Web.Helpers.WebImage.GetImageFromRequest(System.String)">
<summary>Returns an image that has been uploaded using the browser.</summary>
<returns>The image.</returns>
<param name="postedFileName">(Optional) The name of the file that has been posted. If no file name is specified, the first file that was uploaded is returned.</param>
</member>
<member name="P:System.Web.Helpers.WebImage.Height">
<summary>Gets the height, in pixels, of the image.</summary>
<returns>The height.</returns>
</member>
<member name="P:System.Web.Helpers.WebImage.ImageFormat">
<summary>Gets the format of the image (for example, "jpeg" or "png").</summary>
<returns>The file format of the image.</returns>
</member>
<member name="M:System.Web.Helpers.WebImage.Resize(System.Int32,System.Int32,System.Boolean,System.Boolean)">
<summary>Resizes an image.</summary>
<returns>The resized image.</returns>
<param name="width">The width, in pixels, of the <see cref="T:System.Web.Helpers.WebImage" /> object.</param>
<param name="height">The height, in pixels, of the <see cref="T:System.Web.Helpers.WebImage" /> object.</param>
<param name="preserveAspectRatio">true to preserve the aspect ratio of the image; otherwise, false.</param>
<param name="preventEnlarge">true to prevent the enlargement of the image; otherwise, false.</param>
</member>
<member name="M:System.Web.Helpers.WebImage.RotateLeft">
<summary>Rotates an image to the left.</summary>
<returns>The rotated image.</returns>
</member>
<member name="M:System.Web.Helpers.WebImage.RotateRight">
<summary>Rotates an image to the right.</summary>
<returns>The rotated image.</returns>
</member>
<member name="M:System.Web.Helpers.WebImage.Save(System.String,System.String,System.Boolean)">
<summary>Saves the image using the specified file name.</summary>
<returns>The image.</returns>
<param name="filePath">The path to save the image to.</param>
<param name="imageFormat">The format to use when the image file is saved, such as "gif", or "png".</param>
<param name="forceCorrectExtension">true to force the correct file-name extension to be used for the format that is specified in <paramref name="imageFormat" />; otherwise, false. If there is a mismatch between the file type and the specified file-name extension, and if <paramref name="forceCorrectExtension" /> is true, the correct extension will be appended to the file name. For example, a PNG file named Photograph.txt is saved using the name Photograph.txt.png.</param>
</member>
<member name="P:System.Web.Helpers.WebImage.Width">
<summary>Gets the width, in pixels, of the image.</summary>
<returns>The width.</returns>
</member>
<member name="M:System.Web.Helpers.WebImage.Write(System.String)">
<summary>Renders an image to the browser.</summary>
<returns>The image.</returns>
<param name="requestedFormat">(Optional) The file format to use when the image is written.</param>
</member>
<member name="T:System.Web.Helpers.WebMail">
<summary>Provides a way to construct and send an email message using Simple Mail Transfer Protocol (SMTP).</summary>
</member>
<member name="P:System.Web.Helpers.WebMail.EnableSsl">
<summary>Gets or sets a value that indicates whether Secure Sockets Layer (SSL) is used to encrypt the connection when an email message is sent.</summary>
<returns>true if SSL is used to encrypt the connection; otherwise, false.</returns>
</member>
<member name="P:System.Web.Helpers.WebMail.From">
<summary>Gets or sets the email address of the sender.</summary>
<returns>The email address of the sender.</returns>
</member>
<member name="P:System.Web.Helpers.WebMail.Password">
<summary>Gets or sets the password of the sender's email account.</summary>
<returns>The sender's password.</returns>
</member>
<member name="M:System.Web.Helpers.WebMail.Send(System.String,System.String,System.String,System.String,System.String,System.Collections.Generic.IEnumerable{System.String},System.Boolean,System.Collections.Generic.IEnumerable{System.String},System.String,System.String,System.String,System.String,System.String)">
<summary>Sends the specified message to an SMTP server for delivery.</summary>
<param name="to">The email address of the recipient or recipients. Separate multiple recipients using a semicolon (;).</param>
<param name="subject">The subject line for the email message.</param>
<param name="body">The body of the email message. If <paramref name="isBodyHtml" /> is true, HTML in the body is interpreted as markup.</param>
<param name="from">(Optional) The email address of the message sender, or null to not specify a sender. The default value is null.</param>
<param name="cc">(Optional) The email addresses of additional recipients to send a copy of the message to, or null if there are no additional recipients. Separate multiple recipients using a semicolon (;). The default value is null.</param>
<param name="filesToAttach">(Optional) A collection of file names that specifies the files to attach to the email message, or null if there are no files to attach. The default value is null.</param>
<param name="isBodyHtml">(Optional) true to specify that the email message body is in HTML format; false to indicate that the body is in plain-text format. The default value is true.</param>
<param name="additionalHeaders">(Optional) A collection of headers to add to the normal SMTP headers included in this email message, or null to send no additional headers. The default value is null.</param>
<param name="bcc">(Optional) The email addresses of additional recipients to send a "blind" copy of the message to, or null if there are no additional recipients. Separate multiple recipients using a semicolon (;). The default value is null.</param>
<param name="contentEncoding">(Optional) The encoding to use for the body of the message. Possible values are property values for the <see cref="T:System.Text.Encoding" /> class, such as <see cref="P:System.Text.Encoding.UTF8" />. The default value is null.</param>
<param name="headerEncoding">(Optional) The encoding to use for the header of the message. Possible values are property values for the <see cref="T:System.Text.Encoding" /> class, such as <see cref="P:System.Text.Encoding.UTF8" />. The default value is null.</param>
<param name="priority">(Optional) A value ("Normal", "Low", "High") that specifies the priority of the message. The default is "Normal".</param>
<param name="replyTo">(Optional) The email address that will be used when the recipient replies to the message. The default value is null, which indicates that the reply address is the value of the From property. </param>
</member>
<member name="P:System.Web.Helpers.WebMail.SmtpPort">
<summary>Gets or sets the port that is used for SMTP transactions.</summary>
<returns>The port that is used for SMTP transactions.</returns>
</member>
<member name="P:System.Web.Helpers.WebMail.SmtpServer">
<summary>Gets or sets the name of the SMTP server that is used to transmit the email message.</summary>
<returns>The SMTP server.</returns>
</member>
<member name="P:System.Web.Helpers.WebMail.SmtpUseDefaultCredentials">
<summary>Gets or sets a value that indicates whether the default credentials are sent with the requests.</summary>
<returns>true if credentials are sent with the email message; otherwise, false.</returns>
</member>
<member name="P:System.Web.Helpers.WebMail.UserName">
<summary>Gets or sets the name of email account that is used to send email.</summary>
<returns>The name of the user account.</returns>
</member>
</members>
</doc>

View File

@@ -0,0 +1,60 @@
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>System.Web.WebPages.Deployment</name>
</assembly>
<members>
<member name="T:System.Web.WebPages.Deployment.PreApplicationStartCode">
<summary>Provides a registration point for pre-application start code for Web Pages deployment.</summary>
</member>
<member name="M:System.Web.WebPages.Deployment.PreApplicationStartCode.Start">
<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.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.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.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.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.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.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.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.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>

View File

@@ -0,0 +1,292 @@
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>System.Web.WebPages.Razor</name>
</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.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.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.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.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>
</member>
<member name="M:System.Web.WebPages.Razor.PreApplicationStartCode.Start">
<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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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="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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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>
</member>
<member name="M:System.Web.WebPages.Razor.Configuration.HostSection.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Web.WebPages.Razor.Configuration.HostSection" /> class.</summary>
</member>
<member name="P:System.Web.WebPages.Razor.Configuration.HostSection.FactoryType">
<summary>Gets or sets the host factory.</summary>
<returns>The host factory.</returns>
</member>
<member name="F:System.Web.WebPages.Razor.Configuration.HostSection.SectionName">
<summary>Represents the name of the configuration section for a Razor host environment.</summary>
</member>
<member name="T:System.Web.WebPages.Razor.Configuration.RazorPagesSection">
<summary>Provides configuration system support for the pages configuration section.</summary>
</member>
<member name="M:System.Web.WebPages.Razor.Configuration.RazorPagesSection.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Web.WebPages.Razor.Configuration.RazorPagesSection" /> class.</summary>
</member>
<member name="P:System.Web.WebPages.Razor.Configuration.RazorPagesSection.Namespaces">
<summary>Gets or sets the collection of namespaces to add to Web Pages pages in the current application.</summary>
<returns>The collection of namespaces.</returns>
</member>
<member name="P:System.Web.WebPages.Razor.Configuration.RazorPagesSection.PageBaseType">
<summary>Gets or sets the name of the page base type class.</summary>
<returns>The name of the page base type class.</returns>
</member>
<member name="F:System.Web.WebPages.Razor.Configuration.RazorPagesSection.SectionName">
<summary>Represents the name of the configuration section for Razor pages.</summary>
</member>
<member name="T:System.Web.WebPages.Razor.Configuration.RazorWebSectionGroup">
<summary>Provides configuration system support for the system.web.webPages.razor configuration section.</summary>
</member>
<member name="M:System.Web.WebPages.Razor.Configuration.RazorWebSectionGroup.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Web.WebPages.Razor.Configuration.RazorWebSectionGroup" /> class.</summary>
</member>
<member name="F:System.Web.WebPages.Razor.Configuration.RazorWebSectionGroup.GroupName">
<summary>Represents the name of the configuration section for Razor Web section. Contains the static, read-only string "system.web.webPages.razor".</summary>
</member>
<member name="P:System.Web.WebPages.Razor.Configuration.RazorWebSectionGroup.Host">
<summary>Gets or sets the host value for system.web.webPages.razor section group.</summary>
<returns>The host value.</returns>
</member>
<member name="P:System.Web.WebPages.Razor.Configuration.RazorWebSectionGroup.Pages">
<summary>Gets or sets the value of the pages element for the system.web.webPages.razor section.</summary>
<returns>The pages element value.</returns>
</member>
</members>
</doc>

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,846 @@
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>System.Web.Helpers</name>
</assembly>
<members>
<member name="T:System.Web.Helpers.Chart">
<summary>以图表格式显示数据。</summary>
</member>
<member name="M:System.Web.Helpers.Chart.#ctor(System.Int32,System.Int32,System.String,System.String)">
<summary>初始化 <see cref="T:System.Web.Helpers.Chart" /> 类的新实例。</summary>
<param name="width">整个图表图像的宽度(以像素为单位)。</param>
<param name="height">整个图表图像的高度(以像素为单位)。</param>
<param name="theme">(可选)要应用到图表的模板(主题)。</param>
<param name="themePath">(可选)要应用到图表的模板(主题)路径和文件名。</param>
</member>
<member name="M:System.Web.Helpers.Chart.AddLegend(System.String,System.String)">
<summary>将图例添加到图表中。</summary>
<returns>图表。</returns>
<param name="title">图例标题的文本。</param>
<param name="name">图例的唯一名称。</param>
</member>
<member name="M:System.Web.Helpers.Chart.AddSeries(System.String,System.String,System.String,System.String,System.String,System.Int32,System.Collections.IEnumerable,System.String,System.Collections.IEnumerable,System.String)">
<summary>提供图表的数据点和系列特性。</summary>
<returns>图表。</returns>
<param name="name">系列的唯一名称。</param>
<param name="chartType">系列的图表类型。</param>
<param name="chartArea">用于绘制数据系列的图表区域的名称。</param>
<param name="axisLabel">系列的轴标签文本。</param>
<param name="legend">与图例关联的系列的名称。</param>
<param name="markerStep">数据点标记的粒度。</param>
<param name="xValue">要沿 X 轴绘制的值。</param>
<param name="xField">用于 X 值的字段的名称。</param>
<param name="yValues">要沿 Y 轴绘制的值。</param>
<param name="yFields">一个逗号分隔列表,其中列出了 Y 值的字段的名称。</param>
</member>
<member name="M:System.Web.Helpers.Chart.AddTitle(System.String,System.String)">
<summary>将标题添加到图表。</summary>
<returns>图表。</returns>
<param name="text">标题文本。</param>
<param name="name">标题的唯一名称。</param>
</member>
<member name="M:System.Web.Helpers.Chart.DataBindCrossTable(System.Collections.IEnumerable,System.String,System.String,System.String,System.String,System.String)">
<summary>将图表绑定到数据表,该表为列中的每个唯一值创建了一个系列。</summary>
<returns>图表。</returns>
<param name="dataSource">图表数据源。</param>
<param name="groupByField">用于将数据分组成系列的列的名称。</param>
<param name="xField">用于 X 值的列的名称。</param>
<param name="yFields">一个逗号分隔列表,其中列出了用于 Y 值的列的名称。</param>
<param name="otherFields">可以绑定的其他数据点属性。</param>
<param name="pointSortOrder">对系列进行排序所依据的顺序。默认值为“升序”。</param>
</member>
<member name="M:System.Web.Helpers.Chart.DataBindTable(System.Collections.IEnumerable,System.String)">
<summary>创建系列数据并将其绑定到指定数据表,然后选择性地填充多个 X 值。</summary>
<returns>图表。</returns>
<param name="dataSource">图表数据源。此数据源可以为任何 <see cref="T:System.Collections.IEnumerable" /> 对象。</param>
<param name="xField">用于系列 X 值的表列的名称。</param>
</member>
<member name="P:System.Web.Helpers.Chart.FileName">
<summary>获取或设置包含图表图像的文件的名称。</summary>
<returns>文件名。</returns>
</member>
<member name="M:System.Web.Helpers.Chart.GetBytes(System.String)">
<summary>以字节数组的形式返回图表图像。</summary>
<returns>图表。</returns>
<param name="format">图像格式。默认值为“jpeg”。</param>
</member>
<member name="M:System.Web.Helpers.Chart.GetFromCache(System.String)">
<summary>从缓存中检索指定图表。</summary>
<returns>图表。</returns>
<param name="key">包含要检索的图表的缓存项的 ID。此键在调用 <see cref="M:System.Web.Helpers.Chart.SaveToCache(System.String,System.Int32,System.Boolean)" /> 方法时设置。</param>
</member>
<member name="P:System.Web.Helpers.Chart.Height">
<summary>获取或设置图表图像的高度(以像素为单位)。</summary>
<returns>图表高度。</returns>
</member>
<member name="M:System.Web.Helpers.Chart.Save(System.String,System.String)">
<summary>将图表图像保存到指定文件中。</summary>
<returns>图表。</returns>
<param name="path">图像文件的位置和名称。</param>
<param name="format">图像文件格式如“png”或“jpeg”。</param>
</member>
<member name="M:System.Web.Helpers.Chart.SaveToCache(System.String,System.Int32,System.Boolean)">
<summary>将图表保存到系统缓存中。</summary>
<returns>包含图表的缓存项的 ID。</returns>
<param name="key">缓存中图表的 ID。</param>
<param name="minutesToCache">在缓存中保留图表图像的分钟数。默认值为 20。</param>
<param name="slidingExpiration">若为 true则指示每次访问项时都重置图表缓存项的过期若为 false则指示过期将基于自向缓存中添加项以来的绝对时间间隔。默认值为 true。</param>
</member>
<member name="M:System.Web.Helpers.Chart.SaveXml(System.String)">
<summary>将图表另存为 XML 文件。</summary>
<returns>图表。</returns>
<param name="path">XML 文件的路径和名称。</param>
</member>
<member name="M:System.Web.Helpers.Chart.SetXAxis(System.String,System.Double,System.Double)">
<summary>设置水平轴的值。</summary>
<returns>图表。</returns>
<param name="title">X 轴的标题。</param>
<param name="min">X 轴的最小值。</param>
<param name="max">X 轴的最大值。</param>
</member>
<member name="M:System.Web.Helpers.Chart.SetYAxis(System.String,System.Double,System.Double)">
<summary>设置垂直轴的值。</summary>
<returns>图表。</returns>
<param name="title">Y 轴的标题。</param>
<param name="min">Y 轴的最小值。</param>
<param name="max">Y 轴的最大值。</param>
</member>
<member name="M:System.Web.Helpers.Chart.ToWebImage(System.String)">
<summary>基于当前 <see cref="T:System.Web.Helpers.Chart" /> 对象创建 <see cref="T:System.Web.Helpers.WebImage" /> 对象。</summary>
<returns>图表。</returns>
<param name="format"><see cref="T:System.Web.Helpers.WebImage" /> 对象另存为某种图像时该图像的格式。默认值为“jpeg”。<paramref name="format" /> 参数不区分大小写。</param>
</member>
<member name="P:System.Web.Helpers.Chart.Width">
<summary>获取或设置图表图像的宽度(以像素为单位)。</summary>
<returns>图表宽度。</returns>
</member>
<member name="M:System.Web.Helpers.Chart.Write(System.String)">
<summary><see cref="T:System.Web.Helpers.Chart" /> 对象的输出呈现为图像。</summary>
<returns>图表。</returns>
<param name="format">图像的格式。默认值为“jpeg”。</param>
</member>
<member name="M:System.Web.Helpers.Chart.WriteFromCache(System.String,System.String)">
<summary>将已存入缓存的 <see cref="T:System.Web.Helpers.Chart" /> 对象的输入呈现为图像。</summary>
<returns>图表。</returns>
<param name="key">缓存中图表的 ID。</param>
<param name="format">图像的格式。默认值为“jpeg”。</param>
</member>
<member name="T:System.Web.Helpers.ChartTheme">
<summary><see cref="T:System.Web.Helpers.Chart" /> 对象指定视觉主题。</summary>
</member>
<member name="F:System.Web.Helpers.ChartTheme.Blue">
<summary>以一个具有渐进蓝色、圆角边缘、阴影和高对比度网格线的视觉容器为特色的 2D 图表的主题。</summary>
</member>
<member name="F:System.Web.Helpers.ChartTheme.Green">
<summary>以一个具有渐进绿色、圆角边缘、阴影和低对比度网格线的视觉容器为特色的 2D 图表的主题。</summary>
</member>
<member name="F:System.Web.Helpers.ChartTheme.Vanilla">
<summary>没有视觉容器和网格线的 2D 图表的主题。</summary>
</member>
<member name="F:System.Web.Helpers.ChartTheme.Vanilla3D">
<summary>没有视觉容器、带有有限标签和稀疏高对比度网格线的 3D 图表的主题。</summary>
</member>
<member name="F:System.Web.Helpers.ChartTheme.Yellow">
<summary>以一个具有渐进黄色、圆角边缘、阴影和高对比度网格线的视觉容器为特色的 2D 图表的主题。</summary>
</member>
<member name="T:System.Web.Helpers.Crypto">
<summary>提供用于生成哈希值及加密密码或其他敏感数据的方法。</summary>
</member>
<member name="M:System.Web.Helpers.Crypto.GenerateSalt(System.Int32)">
<summary>生成随机字节值的强密码序列。</summary>
<returns>以 base-64 编码字符串生成的 salt 值。</returns>
<param name="byteLength">要生成的加密随机字节的数量。</param>
</member>
<member name="M:System.Web.Helpers.Crypto.Hash(System.Byte[],System.String)">
<summary>返回指定字节数组的哈希值。</summary>
<returns>由十六进制字符组成的字符串形式的 <paramref name="input" /> 的哈希值。</returns>
<param name="input">要为其提供哈希值的数据。</param>
<param name="algorithm">用于生成哈希值的算法。默认值为“sha256”。</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="input" /> 为 null。</exception>
</member>
<member name="M:System.Web.Helpers.Crypto.Hash(System.String,System.String)">
<summary>返回指定字符串的哈希值。</summary>
<returns>由十六进制字符组成的字符串形式的 <paramref name="input" /> 的哈希值。</returns>
<param name="input">要为其提供哈希值的数据。</param>
<param name="algorithm">用于生成哈希值的算法。默认值为“sha256”。</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="input" /> 为 null。</exception>
</member>
<member name="M:System.Web.Helpers.Crypto.HashPassword(System.String)">
<summary>返回指定密码的 RFC 2898 哈希值。</summary>
<returns>base-64 编码字符串形式的 <paramref name="password" /> 的哈希值。</returns>
<param name="password">要为其生成哈希值的密码。</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="password" /> 为 null。</exception>
</member>
<member name="M:System.Web.Helpers.Crypto.SHA1(System.String)">
<summary>返回指定字符串的 SHA-1 哈希值。</summary>
<returns>由十六进制字符组成的字符串形式的 <paramref name="input" /> 的 SHA-1 哈希值。</returns>
<param name="input">要为其提供哈希值的数据。</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="input" /> 为 null。</exception>
</member>
<member name="M:System.Web.Helpers.Crypto.SHA256(System.String)">
<summary>返回指定字符串的 SHA-256 哈希值。</summary>
<returns>由十六进制字符组成的字符串形式的 <paramref name="input" /> 的 SHA-256 哈希值。</returns>
<param name="input">要为其提供哈希值的数据。</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="input" /> 为 null。</exception>
</member>
<member name="M:System.Web.Helpers.Crypto.VerifyHashedPassword(System.String,System.String)">
<summary>确定指定的 RFC 2898 哈希和密码是否为加密匹配。</summary>
<returns>如果哈希值为密码的加密匹配,则为 true否则为 false。</returns>
<param name="hashedPassword">base-64 编码字符串形式的以前计算的 RFC 2898 哈希值。</param>
<param name="password">要与 <paramref name="hashedPassword" /> 进行加密比较的明文密码。</param>
<exception cref="T:System.ArgumentNullException">
<paramref name="hashedPassword" /><paramref name="password" /> 为 null。</exception>
</member>
<member name="T:System.Web.Helpers.DynamicJsonArray">
<summary>通过使用动态语言运行时 (DLR) 的动态功能将一系列值表示为类似 JavaScript 的数组。</summary>
</member>
<member name="M:System.Web.Helpers.DynamicJsonArray.#ctor(System.Object[])">
<summary>使用指定的数组元素值初始化 <see cref="T:System.Web.Helpers.DynamicJsonArray" /> 类的新实例。</summary>
<param name="arrayValues">包含要添加到 <see cref="T:System.Web.Helpers.DynamicJsonArray" /> 实例中的值的对象数组。</param>
</member>
<member name="M:System.Web.Helpers.DynamicJsonArray.GetEnumerator">
<summary>返回一个可用于循环访问 <see cref="T:System.Web.Helpers.DynamicJsonArray" /> 实例的元素的枚举器。</summary>
<returns>可用于循环访问 JSON 数组的元素的枚举器。</returns>
</member>
<member name="P:System.Web.Helpers.DynamicJsonArray.Item(System.Int32)">
<summary>返回 <see cref="T:System.Web.Helpers.DynamicJsonArray" /> 实例中指定索引处的值。</summary>
<returns>指定索引处的值。</returns>
</member>
<member name="P:System.Web.Helpers.DynamicJsonArray.Length">
<summary>返回 <see cref="T:System.Web.Helpers.DynamicJsonArray" /> 实例中的元素数。</summary>
<returns>JSON 数组中的元素数。</returns>
</member>
<member name="M:System.Web.Helpers.DynamicJsonArray.op_Implicit(System.Web.Helpers.DynamicJsonArray)~System.Object[]">
<summary><see cref="T:System.Web.Helpers.DynamicJsonArray" /> 实例转换为对象数组。</summary>
<returns>表示 JSON 数组的对象数组。</returns>
<param name="obj">要转换的 JSON 数组。</param>
</member>
<member name="M:System.Web.Helpers.DynamicJsonArray.op_Implicit(System.Web.Helpers.DynamicJsonArray)~System.Array">
<summary><see cref="T:System.Web.Helpers.DynamicJsonArray" /> 实例转换为对象数组。</summary>
<returns>表示 JSON 数组的对象数组。</returns>
<param name="obj">要转换的 JSON 数组。</param>
</member>
<member name="M:System.Web.Helpers.DynamicJsonArray.System#Collections#Generic#IEnumerable{T}#GetEnumerator">
<summary>返回一个可用于循环访问集合的枚举器。</summary>
<returns>一个可用于循环访问集合的枚举器。</returns>
</member>
<member name="M:System.Web.Helpers.DynamicJsonArray.TryConvert(System.Dynamic.ConvertBinder,System.Object@)">
<summary><see cref="T:System.Web.Helpers.DynamicJsonArray" /> 实例转换为兼容类型。</summary>
<returns>如果转换成功,则为 true否则为 false。</returns>
<param name="binder">提供有关转换操作的信息。</param>
<param name="result">此方法返回时,将包含类型转换操作的结果。该参数未经初始化即被传递。</param>
</member>
<member name="M:System.Web.Helpers.DynamicJsonArray.TryGetMember(System.Dynamic.GetMemberBinder,System.Object@)">
<summary>以不会引发异常的方式测试动态成员(不受支持)的 <see cref="T:System.Web.Helpers.DynamicJsonArray" /> 实例。</summary>
<returns>所有情况下均为 true。</returns>
<param name="binder">提供有关 get 操作的信息。</param>
<param name="result">此方法返回时,将包含 null。该参数未经初始化即被传递。</param>
</member>
<member name="T:System.Web.Helpers.DynamicJsonObject">
<summary>通过使用动态语言运行时的功能将值的集合表示为类似 JavaScript 的对象。</summary>
</member>
<member name="M:System.Web.Helpers.DynamicJsonObject.#ctor(System.Collections.Generic.IDictionary{System.String,System.Object})">
<summary>使用指定字段值初始化 <see cref="T:System.Web.Helpers.DynamicJsonObject" /> 类的新实例。</summary>
<param name="values">将作为动态成员添加到 <see cref="T:System.Web.Helpers.DynamicJsonObject" /> 实例中的属性名称和值的字典。</param>
</member>
<member name="M:System.Web.Helpers.DynamicJsonObject.GetDynamicMemberNames">
<summary>返回包含 <see cref="T:System.Web.Helpers.DynamicJsonObject" /> 实例的所有动态成员JSON 字段)的名称的列表。</summary>
<returns>包含每个动态成员JSON 字段)的名称的列表。</returns>
</member>
<member name="M:System.Web.Helpers.DynamicJsonObject.TryConvert(System.Dynamic.ConvertBinder,System.Object@)">
<summary><see cref="T:System.Web.Helpers.DynamicJsonObject" /> 实例转换为兼容类型。</summary>
<returns>所有情况下均为 true。</returns>
<param name="binder">提供有关转换操作的信息。</param>
<param name="result">此方法返回时,将包含类型转换操作的结果。该参数未经初始化即被传递。</param>
<exception cref="T:System.InvalidOperationException">无法将 <see cref="T:System.Web.Helpers.DynamicJsonObject" /> 实例转换为指定类型。</exception>
</member>
<member name="M:System.Web.Helpers.DynamicJsonObject.TryGetIndex(System.Dynamic.GetIndexBinder,System.Object[],System.Object@)">
<summary>使用指定索引获取 <see cref="T:System.Web.Helpers.DynamicJsonObject" /> 字段的值。</summary>
<returns>所有情况下均为 true。</returns>
<param name="binder">提供有关已编入索引的 get 操作的信息。</param>
<param name="indexes">包含按名称将字段编入索引的单个对象的数组。此对象必须能够转换为字符串,以便指定要返回的 JSON 字段的名称。如果指定了多个索引,则当此方法返回时,<paramref name="result" /> 将包含 null。</param>
<param name="result">当此方法返回时,将包含已编入索引的字段的值;或者如果 get 操作失败,则将包含 null。该参数未经初始化即被传递。</param>
</member>
<member name="M:System.Web.Helpers.DynamicJsonObject.TryGetMember(System.Dynamic.GetMemberBinder,System.Object@)">
<summary>使用指定名称获取 <see cref="T:System.Web.Helpers.DynamicJsonObject" /> 字段的值。</summary>
<returns>所有情况下均为 true。</returns>
<param name="binder">提供有关 get 操作的信息。</param>
<param name="result">当此方法返回时,将包含字段的值;或者如果 GET 操作失败,则将包含 null。该参数未经初始化即被传递。</param>
</member>
<member name="M:System.Web.Helpers.DynamicJsonObject.TrySetIndex(System.Dynamic.SetIndexBinder,System.Object[],System.Object)">
<summary>使用指定索引设置 <see cref="T:System.Web.Helpers.DynamicJsonObject" /> 字段的值。</summary>
<returns>所有情况下均为 true。</returns>
<param name="binder">提供有关已编入索引的 SET 操作的信息。</param>
<param name="indexes">包含按名称将字段编入索引的单个对象的数组。此对象必须能够转换为字符串,以便指定要返回的 JSON 字段的名称。如果指定了多个索引,则不会更改或添加任何字段。</param>
<param name="value">要将字段设置为的值。</param>
</member>
<member name="M:System.Web.Helpers.DynamicJsonObject.TrySetMember(System.Dynamic.SetMemberBinder,System.Object)">
<summary>使用指定名称设置 <see cref="T:System.Web.Helpers.DynamicJsonObject" /> 字段的值。</summary>
<returns>所有情况下均为 true。</returns>
<param name="binder">提供有关 SET 操作的信息。</param>
<param name="value">要将字段设置为的值。</param>
</member>
<member name="T:System.Web.Helpers.Json">
<summary>提供处理 JavaScript 对象表示法 (JSON) 格式数据的方法。</summary>
</member>
<member name="M:System.Web.Helpers.Json.Decode``1(System.String)">
<summary>将 JavaScript 对象表示法 (JSON) 格式的数据转换为指定的强类型数据列表。</summary>
<returns>已转换为强类型列表的 JSON 编码数据。</returns>
<param name="value">要转换的 JSON 编码字符串。</param>
<typeparam name="T">要将 JSON 数据转换为的强类型列表的类型。</typeparam>
</member>
<member name="M:System.Web.Helpers.Json.Decode(System.String)">
<summary>将 JavaScript 对象表示法 (JSON) 格式的数据转换为数据对象。</summary>
<returns>已转换为数据对象的 JSON 编码数据。</returns>
<param name="value">要转换的 JSON 编码字符串。</param>
</member>
<member name="M:System.Web.Helpers.Json.Decode(System.String,System.Type)">
<summary>将 JavaScript 对象表示法 (JSON) 格式的数据转换为指定类型的数据对象。</summary>
<returns>已转换为指定类型的 JSON 编码数据。</returns>
<param name="value">要转换的 JSON 编码字符串。</param>
<param name="targetType">应将 <paramref name="value" /> 数据转换为的类型。</param>
</member>
<member name="M:System.Web.Helpers.Json.Encode(System.Object)">
<summary>将数据对象转换为 JavaScript 对象表示法 (JSON) 格式的字符串。</summary>
<returns>返回已转换为 JSON 格式的数据的字符串。</returns>
<param name="value">要转换的数据对象。</param>
</member>
<member name="M:System.Web.Helpers.Json.Write(System.Object,System.IO.TextWriter)">
<summary>将数据对象转换为 JavaScript 对象表示法 (JSON) 格式的字符串,然后将该字符串添加到指定的 <see cref="T:System.IO.TextWriter" /> 对象。</summary>
<param name="value">要转换的数据对象。</param>
<param name="writer">包含已转换的 JSON 数据的对象。</param>
</member>
<member name="T:System.Web.Helpers.ObjectInfo">
<summary>呈现指定对象及其引用的任何子对象的属性名称和值。</summary>
</member>
<member name="M:System.Web.Helpers.ObjectInfo.Print(System.Object,System.Int32,System.Int32)">
<summary>呈现指定对象及任何子对象的属性名称和值。</summary>
<returns>对于简单变量,将返回类型和值。对于包含多个项的对象,将返回属性名称或键,以及每个属性的值。</returns>
<param name="value">要呈现其信息的对象。</param>
<param name="depth">可选。指定要呈现其信息的嵌套子对象的深度。默认值为 10。</param>
<param name="enumerationLength">可选。指定该方法为对象值显示的最大字符数。默认值为 1000。</param>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="depth" /> 小于零。</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="enumerationLength" /> 小于或等于零。</exception>
</member>
<member name="T:System.Web.Helpers.ServerInfo">
<summary>显示有关承载当前网页的 Web 服务器环境的信息。</summary>
</member>
<member name="M:System.Web.Helpers.ServerInfo.GetHtml">
<summary>显示有关 Web 服务器环境的信息。</summary>
<returns>包含 Web 服务器相关信息的名称/值对字符串。</returns>
</member>
<member name="T:System.Web.Helpers.SortDirection">
<summary>指定对项列表进行排序的方向。</summary>
</member>
<member name="F:System.Web.Helpers.SortDirection.Ascending">
<summary>从最小到最大排序 — 例如,从 1 到 10。</summary>
</member>
<member name="F:System.Web.Helpers.SortDirection.Descending">
<summary>从最大到最小排序 — 例如,从 10 到 1。</summary>
</member>
<member name="T:System.Web.Helpers.WebCache">
<summary>提供可存储经常访问的数据的缓存。</summary>
</member>
<member name="M:System.Web.Helpers.WebCache.Get(System.String)">
<summary><see cref="T:System.Web.Helpers.WebCache" /> 对象中检索指定项。</summary>
<returns>从缓存中检索到的项;如果找不到该项,则为 null。</returns>
<param name="key">要检索的缓存项的标识符。</param>
</member>
<member name="M:System.Web.Helpers.WebCache.Remove(System.String)">
<summary><see cref="T:System.Web.Helpers.WebCache" /> 对象中删除指定项。</summary>
<returns><see cref="T:System.Web.Helpers.WebCache" /> 对象中删除的项。如果找不到该项,则返回 null。</returns>
<param name="key">要删除的缓存项的标识符。</param>
</member>
<member name="M:System.Web.Helpers.WebCache.Set(System.String,System.Object,System.Int32,System.Boolean)">
<summary>将一个项插入到 <see cref="T:System.Web.Helpers.WebCache" /> 对象。</summary>
<param name="key">缓存项的标识符。</param>
<param name="value">要插入缓存中的数据。</param>
<param name="minutesToCache">可选。在缓存中保留项的分钟数。默认值为 20。</param>
<param name="slidingExpiration">可选。若为 true则指示每次访问项时都重置缓存项过期若为 false则指示过期将基于自向缓存中添加项以来的绝对时间。默认值为 true。在这种情况下如果还使用 <paramref name="minutesToCache" /> 参数的默认值,缓存的项将在最后一次访问后 20 分钟过期。</param>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="minutesToCache" /> 的值小于或等于零。</exception>
<exception cref="T:System.ArgumentOutOfRangeException">已启用可调过期且 <paramref name="minutesToCache" /> 的值大于一年。</exception>
</member>
<member name="T:System.Web.Helpers.WebGrid">
<summary>在网页上使用 HTML table 元素显示数据。</summary>
</member>
<member name="M:System.Web.Helpers.WebGrid.#ctor(System.Collections.Generic.IEnumerable{System.Object},System.Collections.Generic.IEnumerable{System.String},System.String,System.Int32,System.Boolean,System.Boolean,System.String,System.String,System.String,System.String,System.String,System.String,System.String)">
<summary>初始化 <see cref="T:System.Web.Helpers.WebGrid" /> 类的新实例。</summary>
<param name="source">要显示的数据。</param>
<param name="columnNames">包含要显示的数据列的名称的集合。默认情况下,将根据 <paramref name="source" /> 参数中的值自动填充此值。</param>
<param name="defaultSort">默认情况下用于对网格进行排序的数据列的名称。</param>
<param name="rowsPerPage">启用分页时在网格的每个页上显示的行的数量。默认值为 10。</param>
<param name="canPage">若要指定为 <see cref="T:System.Web.Helpers.WebGrid" /> 实例启用分页,则为 true否则为 false。默认值为 true。</param>
<param name="canSort">若要指定为 <see cref="T:System.Web.Helpers.WebGrid" /> 实例启用排序,则为 true否则为 false。默认值为 true。</param>
<param name="ajaxUpdateContainerId">HTML id 特性的值,用于标记 HTML 元素以获取与 <see cref="T:System.Web.Helpers.WebGrid" /> 实例关联的动态 Ajax 更新。</param>
<param name="ajaxUpdateCallback">在更新 <see cref="P:System.Web.Helpers.WebGrid.AjaxUpdateContainerId" /> 属性指定的 HTML 元素后调用的 JavaScript 函数的名称。如果未提供函数名称,将不会调用任何函数。如果指定函数不存在,在调用该函数时,将发生 JavaScript 错误。</param>
<param name="fieldNamePrefix">可应用于所有与 <see cref="T:System.Web.Helpers.WebGrid" /> 实例关联的查询字符串字段的前缀。此值用于支持同一网页上的多个 <see cref="T:System.Web.Helpers.WebGrid" /> 实例。</param>
<param name="pageFieldName">用于指定 <see cref="T:System.Web.Helpers.WebGrid" /> 实例的当前页的查询字符串字段的名称。</param>
<param name="selectionFieldName">用于指定 <see cref="T:System.Web.Helpers.WebGrid" /> 实例的当前选定行的查询字符串字段的名称。</param>
<param name="sortFieldName">查询字符串字段(用于指定作为 <see cref="T:System.Web.Helpers.WebGrid" /> 实例排序依据的数据列的名称)的名称。</param>
<param name="sortDirectionFieldName">用于指定 <see cref="T:System.Web.Helpers.WebGrid" /> 实例排序方向的查询字符串字段的名称。</param>
</member>
<member name="M:System.Web.Helpers.WebGrid.AddSorter``2(System.String,System.Linq.Expressions.Expression{System.Func{``0,``1}})">
<summary>为给定列添加特定的排序函数。</summary>
<returns>应用了新的自定义排序程序的当前网格。</returns>
<param name="columnName">列名称(用于排序)</param>
<param name="keySelector">用于为网格源中的每个元素选择键或排序依据的函数。</param>
<typeparam name="TElement">网格源中的元素类型。</typeparam>
<typeparam name="TProperty">列类型,通常从 keySelector 函数的返回类型推断。</typeparam>
</member>
<member name="P:System.Web.Helpers.WebGrid.AjaxUpdateCallback">
<summary>在更新与 <see cref="T:System.Web.Helpers.WebGrid" /> 实例关联的 HTML 元素以响应 Ajax 更新请求后,获取要调用的 JavaScript 函数的名称。</summary>
<returns>函数的名称。</returns>
</member>
<member name="P:System.Web.Helpers.WebGrid.AjaxUpdateContainerId">
<summary>获取在网页上标记 HTML 元素(该元素获取与 <see cref="T:System.Web.Helpers.WebGrid" /> 实例关联的动态 Ajax 更新)的 HTML id 特性的值。</summary>
<returns>id 特性的值。</returns>
</member>
<member name="M:System.Web.Helpers.WebGrid.Bind(System.Collections.Generic.IEnumerable{System.Object},System.Collections.Generic.IEnumerable{System.String},System.Boolean,System.Int32)">
<summary>将指定数据绑定到 <see cref="T:System.Web.Helpers.WebGrid" /> 实例。</summary>
<returns>已绑定并填充的 <see cref="T:System.Web.Helpers.WebGrid" /> 实例。</returns>
<param name="source">要显示的数据。</param>
<param name="columnNames">包含要绑定的数据列的名称的集合。</param>
<param name="autoSortAndPage">若要为 <see cref="T:System.Web.Helpers.WebGrid" /> 实例启用排序和分页,则为 true否则为 false。</param>
<param name="rowCount">要在网格的每个页上显示的行的数量。</param>
</member>
<member name="P:System.Web.Helpers.WebGrid.CanSort">
<summary>获取指示 <see cref="T:System.Web.Helpers.WebGrid" /> 实例是否支持排序的值。</summary>
<returns>如果该实例支持排序,则为 true否则为 false。</returns>
</member>
<member name="M:System.Web.Helpers.WebGrid.Column(System.String,System.String,System.Func{System.Object,System.Object},System.String,System.Boolean)">
<summary>创建新的 <see cref="T:System.Web.Helpers.WebGridColumn" /> 实例。</summary>
<returns>新列。</returns>
<param name="columnName">要与 <see cref="T:System.Web.Helpers.WebGridColumn" /> 实例关联的数据列的名称。</param>
<param name="header">在 HTML 表列的标题中呈现的、与 <see cref="T:System.Web.Helpers.WebGridColumn" /> 实例关联的文本。</param>
<param name="format">用于格式化与 <see cref="T:System.Web.Helpers.WebGridColumn" /> 实例关联的数据值的函数。</param>
<param name="style">一个用于指定 CSS 类名称的字符串,而 CSS 类则可用于设置与 <see cref="T:System.Web.Helpers.WebGridColumn" /> 实例关联的 HTML 表单元格的样式。</param>
<param name="canSort">若要在 <see cref="T:System.Web.Helpers.WebGrid" /> 实例中按 <see cref="T:System.Web.Helpers.WebGridColumn" /> 实例的关联数据值启用排序,则为 true否则为 false。默认值为 true。</param>
</member>
<member name="P:System.Web.Helpers.WebGrid.ColumnNames">
<summary>获取一个集合,该集合包含绑定到 <see cref="T:System.Web.Helpers.WebGrid" /> 实例的每个数据列的名称。</summary>
<returns>数据列名称的集合。</returns>
</member>
<member name="M:System.Web.Helpers.WebGrid.Columns(System.Web.Helpers.WebGridColumn[])">
<summary>返回包含指定 <see cref="T:System.Web.Helpers.WebGridColumn" /> 实例的数组。</summary>
<returns>列的数组。</returns>
<param name="columnSet">
<see cref="T:System.Web.Helpers.WebGridColumn" /> 列实例的数量可变。</param>
</member>
<member name="P:System.Web.Helpers.WebGrid.FieldNamePrefix">
<summary>获取可应用于所有与 <see cref="T:System.Web.Helpers.WebGrid" /> 实例关联的查询字符串字段的前缀。</summary>
<returns>
<see cref="T:System.Web.Helpers.WebGrid" /> 实例的查询字符串字段前缀。</returns>
</member>
<member name="M:System.Web.Helpers.WebGrid.GetContainerUpdateScript(System.String)">
<summary>返回可用于在指定网页上更新与 <see cref="T:System.Web.Helpers.WebGrid" /> 实例关联的 HTML 元素的 JavaScript 语句。</summary>
<returns>可用于在网页上更新与 <see cref="T:System.Web.Helpers.WebGrid" /> 实例关联的 HTML 元素的 JavaScript 语句。</returns>
<param name="path">包含所更新的 <see cref="T:System.Web.Helpers.WebGrid" /> 实例的网页 URL。此 URL 可以包括查询字符串参数。</param>
</member>
<member name="M:System.Web.Helpers.WebGrid.GetHtml(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.Web.Helpers.WebGridPagerModes,System.String,System.String,System.String,System.String,System.Int32,System.Object)">
<summary>返回用于呈现 <see cref="T:System.Web.Helpers.WebGrid" /> 实例并使用指定分页选项的 HTML 标记。</summary>
<returns>表示完全填充的 <see cref="T:System.Web.Helpers.WebGrid" /> 实例的 HTML 标记。</returns>
<param name="tableStyle">用于设置整个表的样式的 CSS 类的名称。</param>
<param name="headerStyle">用于设置表标题样式的 CSS 类的名称。</param>
<param name="footerStyle">用于设置表脚注样式的 CSS 类的名称。</param>
<param name="rowStyle">用于设置每个表行样式的 CSS 类的名称。</param>
<param name="alternatingRowStyle">用于设置偶数表行样式的 CSS 类的名称。</param>
<param name="selectedRowStyle">用于设置选定表行样式的 CSS 类的名称。(一次只能选定一行。)</param>
<param name="caption">表标题。</param>
<param name="displayHeader">若要显示表标题,则为 true否则为 false。默认值为 true。</param>
<param name="fillEmptyRows">在没有足够数据项填充最后一页时,若要在最后一页中插入附加行,则为 true否则为 false。默认值为 false。附加行使用由 <paramref name="emptyRowCellValue" /> 参数指定的文本进行填充。</param>
<param name="emptyRowCellValue">在没有足够数据项填充最后一页时用于在页面中填充附加行的文本。必须将 <paramref name="fillEmptyRows" /> 参数设置为 true 才能显示这些附加行。</param>
<param name="columns">指定如何显示每列的 <see cref="T:System.Web.Helpers.WebGridColumn" /> 实例的集合。其中包括哪个数据列与每个网格列相关联,以及如何格式化每个网格列包含的数据值。</param>
<param name="exclusions">一个集合,其中包含在网格自动填充列时要排除的数据列的名称。</param>
<param name="mode">一种枚举值的按位组合,可用于指定相关方法,以便在 <see cref="T:System.Web.Helpers.WebGrid" /> 实例的页面间进行切换。</param>
<param name="firstText">用于链接到 <see cref="T:System.Web.Helpers.WebGrid" /> 实例的第一个页面的 HTML 链接元素的文本。必须设置 <paramref name="mode" /> 参数的 <see cref="F:System.Web.Helpers.WebGridPagerModes.FirstLast" /> 标记才能显示此页面导航元素。</param>
<param name="previousText">用于链接到 <see cref="T:System.Web.Helpers.WebGrid" /> 实例的上一个页面的 HTML 链接元素的文本。必须设置 <paramref name="mode" /> 参数的 <see cref="F:System.Web.Helpers.WebGridPagerModes.NextPrevious" /> 标记才能显示此页面导航元素。</param>
<param name="nextText">用于链接到 <see cref="T:System.Web.Helpers.WebGrid" /> 实例的下一个页面的 HTML 链接元素的文本。必须设置 <paramref name="mode" /> 参数的 <see cref="F:System.Web.Helpers.WebGridPagerModes.NextPrevious" /> 标记才能显示此页面导航元素。</param>
<param name="lastText">用于链接到 <see cref="T:System.Web.Helpers.WebGrid" /> 实例的最后一个页面的 HTML 链接元素的文本。必须设置 <paramref name="mode" /> 参数的 <see cref="F:System.Web.Helpers.WebGridPagerModes.FirstLast" /> 标记才能显示此页面导航元素。</param>
<param name="numericLinksCount">提供给附近的 <see cref="T:System.Web.Helpers.WebGrid" /> 页的数字页链接的数量。每个数字页链接的文本都包含页码。必须设置 <paramref name="mode" /> 参数的 <see cref="F:System.Web.Helpers.WebGridPagerModes.Numeric" /> 标记才能显示这些页面导航元素。</param>
<param name="htmlAttributes">一个表示特性(名称和值)集合的对象,可针对表示 <see cref="T:System.Web.Helpers.WebGrid" /> 实例的 HTML table 元素进行设置。</param>
</member>
<member name="M:System.Web.Helpers.WebGrid.GetPageUrl(System.Int32)">
<summary>返回可用于显示 <see cref="T:System.Web.Helpers.WebGrid" /> 实例的指定数据页的 URL。</summary>
<returns>可用于显示网格的指定数据页的 URL。</returns>
<param name="pageIndex">要显示的 <see cref="T:System.Web.Helpers.WebGrid" /> 页的索引。</param>
</member>
<member name="M:System.Web.Helpers.WebGrid.GetSortUrl(System.String)">
<summary>返回可用于按指定列对 <see cref="T:System.Web.Helpers.WebGrid" /> 实例进行排序的 URL。</summary>
<returns>可用于对网格进行排序的 URL。</returns>
<param name="column">要作为排序依据的数据列的名称。</param>
</member>
<member name="P:System.Web.Helpers.WebGrid.HasSelection">
<summary>获取指示是否已选定 <see cref="T:System.Web.Helpers.WebGrid" /> 实例中的一行的值。</summary>
<returns>如果当前已选定一行,则为 true否则为 false。</returns>
</member>
<member name="P:System.Web.Helpers.WebGrid.IsAjaxEnabled">
<summary>返回一个值,用于指示 <see cref="T:System.Web.Helpers.WebGrid" /> 实例是否能够使用 Ajax 调用来刷新显示内容。</summary>
<returns>如果该实例支持 Ajax 调用,则为 true否则为 false。</returns>
</member>
<member name="P:System.Web.Helpers.WebGrid.PageCount">
<summary>获取 <see cref="T:System.Web.Helpers.WebGrid" /> 实例包含的页数。</summary>
<returns>页计数。</returns>
</member>
<member name="P:System.Web.Helpers.WebGrid.PageFieldName">
<summary>获取用于指定 <see cref="T:System.Web.Helpers.WebGrid" /> 实例的当前页的查询字符串字段的全名。</summary>
<returns>用于指定网格的当前页的查询字符串字段的全名。</returns>
</member>
<member name="P:System.Web.Helpers.WebGrid.PageIndex">
<summary>获取或设置 <see cref="T:System.Web.Helpers.WebGrid" /> 实例的当前页的索引。</summary>
<returns>当前页的索引。</returns>
</member>
<member name="M:System.Web.Helpers.WebGrid.Pager(System.Web.Helpers.WebGridPagerModes,System.String,System.String,System.String,System.String,System.Int32)">
<summary>返回用于为 <see cref="T:System.Web.Helpers.WebGrid" /> 实例提供指定分页支持的 HTML 标记。</summary>
<returns>为网格提供分页支持的 HTML 标记。</returns>
<param name="mode">一种枚举值的按位组合,可用于指定相关方法,以便在网格的页面间进行切换。默认值为 <see cref="F:System.Web.Helpers.WebGridPagerModes.NextPrevious" /><see cref="F:System.Web.Helpers.WebGridPagerModes.Numeric" /> 标记的按位或。</param>
<param name="firstText">可导航到网格第一个页面的 HTML 链接元素的文本。</param>
<param name="previousText">可导航到网格上一页面的 HTML 链接元素的文本。</param>
<param name="nextText">可导航到网格下一页面的 HTML 链接元素的文本。</param>
<param name="lastText">可导航到网格最后一个页面的 HTML 链接元素的文本。</param>
<param name="numericLinksCount">要显示的数字页链接的数量。默认值为 5。</param>
</member>
<member name="P:System.Web.Helpers.WebGrid.Rows">
<summary>对网格排序后,获取包含 <see cref="T:System.Web.Helpers.WebGrid" /> 实例当前页上相关行的列表。</summary>
<returns>行列表。</returns>
</member>
<member name="P:System.Web.Helpers.WebGrid.RowsPerPage">
<summary>获取在 <see cref="T:System.Web.Helpers.WebGrid" /> 实例的每个页上显示的行的数量。</summary>
<returns>在网格的每个页上显示的行的数量。</returns>
</member>
<member name="P:System.Web.Helpers.WebGrid.SelectedIndex">
<summary>获取或设置相对于 <see cref="T:System.Web.Helpers.WebGrid" /> 实例当前页的选定行的索引。</summary>
<returns>相对于当前页的选定行的索引。</returns>
</member>
<member name="P:System.Web.Helpers.WebGrid.SelectedRow">
<summary>获取 <see cref="T:System.Web.Helpers.WebGrid" /> 实例的当前选定行。</summary>
<returns>当前选定行。</returns>
</member>
<member name="P:System.Web.Helpers.WebGrid.SelectionFieldName">
<summary>获取用于指定 <see cref="T:System.Web.Helpers.WebGrid" /> 实例的选定行的查询字符串字段的全名。</summary>
<returns>用于指定网格的选定行的查询字符串字段的全名。</returns>
</member>
<member name="P:System.Web.Helpers.WebGrid.SortColumn">
<summary>获取或设置作为 <see cref="T:System.Web.Helpers.WebGrid" /> 实例排序依据的数据列的名称。</summary>
<returns>用于对网格进行排序的数据列的名称。</returns>
</member>
<member name="P:System.Web.Helpers.WebGrid.SortDirection">
<summary>获取或设置 <see cref="T:System.Web.Helpers.WebGrid" /> 实例的排序方向。</summary>
<returns>排序方向。</returns>
</member>
<member name="P:System.Web.Helpers.WebGrid.SortDirectionFieldName">
<summary>获取用于指定 <see cref="T:System.Web.Helpers.WebGrid" /> 实例的排序方向的查询字符串字段的全名。</summary>
<returns>用于指定网格的排序方向的查询字符串字段的全名。</returns>
</member>
<member name="P:System.Web.Helpers.WebGrid.SortFieldName">
<summary>获取查询字符串字段(用于指定作为 <see cref="T:System.Web.Helpers.WebGrid" /> 实例排序依据的数据列的名称)的全名。</summary>
<returns>用于指定作为网格排序依据的数据列名称的查询字符串字段的全名。</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{System.Object,System.Object},System.Object)">
<summary>返回用于呈现 <see cref="T:System.Web.Helpers.WebGrid" /> 实例的 HTML 标记。</summary>
<returns>表示完全填充的 <see cref="T:System.Web.Helpers.WebGrid" /> 实例的 HTML 标记。</returns>
<param name="tableStyle">用于设置整个表的样式的 CSS 类的名称。</param>
<param name="headerStyle">用于设置表标题样式的 CSS 类的名称。</param>
<param name="footerStyle">用于设置表脚注样式的 CSS 类的名称。</param>
<param name="rowStyle">用于设置每个表行样式的 CSS 类的名称。</param>
<param name="alternatingRowStyle">用于设置偶数表行样式的 CSS 类的名称。</param>
<param name="selectedRowStyle">用于设置选定表行样式的 CSS 类的名称。</param>
<param name="caption">表标题。</param>
<param name="displayHeader">若要显示表标题,则为 true否则为 false。默认值为 true。</param>
<param name="fillEmptyRows">在没有足够数据项填充最后一页时,若要在最后一页中插入附加行,则为 true否则为 false。默认值为 false。附加行使用由 <paramref name="emptyRowCellValue" /> 参数指定的文本进行填充。</param>
<param name="emptyRowCellValue">在没有足够数据项填充最后一页时用于在最后一页中填充附加行的文本。必须将 <paramref name="fillEmptyRows" /> 参数设置为 true 才能显示这些附加行。</param>
<param name="columns">指定如何显示每列的 <see cref="T:System.Web.Helpers.WebGridColumn" /> 实例的集合。其中包括哪个数据列与每个网格列相关联,以及如何格式化每个网格列包含的数据值。</param>
<param name="exclusions">一个集合,其中包含在网格自动填充列时要排除的数据列的名称。</param>
<param name="footer">可返回用于呈现表脚注的 HTML 标记的函数。</param>
<param name="htmlAttributes">一个表示特性(名称和值)集合的对象,可针对表示 <see cref="T:System.Web.Helpers.WebGrid" /> 实例的 HTML table 元素进行设置。</param>
</member>
<member name="P:System.Web.Helpers.WebGrid.TotalRowCount">
<summary>获取 <see cref="T:System.Web.Helpers.WebGrid" /> 实例包含的行的总数。</summary>
<returns>网格中的行的总数。此值包括每个页中的所有行,但不包括在没有足够数据项填充最后一页时插入到最后一页中的附加行。</returns>
</member>
<member name="T:System.Web.Helpers.WebGridColumn">
<summary>表示 <see cref="T:System.Web.Helpers.WebGrid" /> 实例中的一列。</summary>
</member>
<member name="M:System.Web.Helpers.WebGridColumn.#ctor">
<summary>初始化 <see cref="T:System.Web.Helpers.WebGridColumn" /> 类的新实例。</summary>
</member>
<member name="P:System.Web.Helpers.WebGridColumn.CanSort">
<summary>获取或设置指示是否可以对 <see cref="T:System.Web.Helpers.WebGrid" /> 列进行排序的值。</summary>
<returns>若指示可以对该列进行排序,则为 true否则为 false。</returns>
</member>
<member name="P:System.Web.Helpers.WebGridColumn.ColumnName">
<summary>获取或设置与 <see cref="T:System.Web.Helpers.WebGrid" /> 列关联的数据项的名称。</summary>
<returns>数据项的名称。</returns>
</member>
<member name="P:System.Web.Helpers.WebGridColumn.Format">
<summary>获取或设置一个函数,该函数用于设置与 <see cref="T:System.Web.Helpers.WebGrid" /> 列关联的数据项的格式。</summary>
<returns>用于设置与该列关联的数据项格式的函数。</returns>
</member>
<member name="P:System.Web.Helpers.WebGridColumn.Header">
<summary>获取或设置在 <see cref="T:System.Web.Helpers.WebGrid" /> 列的标题中呈现的文本。</summary>
<returns>呈现到列标题的文本。</returns>
</member>
<member name="P:System.Web.Helpers.WebGridColumn.Style">
<summary>获取或设置 CSS 类特性,该特性可以呈现为与 <see cref="T:System.Web.Helpers.WebGrid" /> 列关联的 HTML 表单元格的一部分。</summary>
<returns>应用于与该列关联的单元格的 CSS 类特性。</returns>
</member>
<member name="T:System.Web.Helpers.WebGridPagerModes">
<summary>指定标记,这些标记所描述的方法可用于在 <see cref="T:System.Web.Helpers.WebGrid" /> 实例的页面间进行切换。此枚举有一个 <see cref="T:System.FlagsAttribute" /> 特性,通过该特性可使其成员值按位组合。</summary>
</member>
<member name="F:System.Web.Helpers.WebGridPagerModes.All">
<summary>指示已提供在 <see cref="T:System.Web.Helpers.WebGrid" /> 页面间进行切换的所有方法。</summary>
</member>
<member name="F:System.Web.Helpers.WebGridPagerModes.FirstLast">
<summary>指示已提供可直接转到第一个或最后一个 <see cref="F:System.Web.Helpers.WebGrid" /> 页面的方法。</summary>
</member>
<member name="F:System.Web.Helpers.WebGridPagerModes.NextPrevious">
<summary>指示已提供可转到下一个或上一个 <see cref="F:System.Web.Helpers.WebGrid" /> 页面的方法。</summary>
</member>
<member name="F:System.Web.Helpers.WebGridPagerModes.Numeric">
<summary>指示已提供可通过使用页码转到附近的 <see cref="F:System.Web.Helpers.WebGrid" /> 页面的方法。</summary>
</member>
<member name="T:System.Web.Helpers.WebGridRow">
<summary>表示 <see cref="T:System.Web.Helpers.WebGrid" /> 实例中的一行。</summary>
</member>
<member name="M:System.Web.Helpers.WebGridRow.#ctor(System.Web.Helpers.WebGrid,System.Object,System.Int32)">
<summary>使用指定的 <see cref="T:System.Web.Helpers.WebGrid" /> 实例、行值和索引初始化 <see cref="T:System.Web.Helpers.WebGridRow" /> 类的新实例。</summary>
<param name="webGrid">包含该行的 <see cref="T:System.Web.Helpers.WebGrid" /> 实例。</param>
<param name="value">包含该行中每个值的属性成员的对象。</param>
<param name="rowIndex">该行的索引。</param>
</member>
<member name="M:System.Web.Helpers.WebGridRow.GetEnumerator">
<summary>返回一个可用于循环访问 <see cref="T:System.Web.Helpers.WebGridRow" /> 实例的值的枚举器。</summary>
<returns>可用于循环访问行的值的枚举器。</returns>
</member>
<member name="M:System.Web.Helpers.WebGridRow.GetSelectLink(System.String)">
<summary>返回可供用户用来选择行的 HTML 元素(链接)。</summary>
<returns>允许用户通过单击方式来选择行的链接。</returns>
<param name="text">链接元素的内部文本。如果 <paramref name="text" /> 为空或 null则使用“Select”。</param>
</member>
<member name="M:System.Web.Helpers.WebGridRow.GetSelectUrl">
<summary>返回可用于选择行的 URL。</summary>
<returns>用于选择行的 URL。</returns>
</member>
<member name="P:System.Web.Helpers.WebGridRow.Item(System.Int32)">
<summary>返回 <see cref="T:System.Web.Helpers.WebGridRow" /> 实例中指定索引处的值。</summary>
<returns>指定索引处的值。</returns>
<param name="index">该行中要返回的值的从零开始的索引。</param>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="index" /> 小于 0或大于等于行中值的数量。</exception>
</member>
<member name="P:System.Web.Helpers.WebGridRow.Item(System.String)">
<summary>返回在 <see cref="T:System.Web.Helpers.WebGridRow" /> 实例中具有指定名称的值。</summary>
<returns>指定值。</returns>
<param name="name">该行中要返回的值的名称。</param>
<exception cref="T:System.ArgumentException">
<paramref name="name" /> 为 Nothing 或空。</exception>
<exception cref="T:System.InvalidOperationException">
<paramref name="name" /> 指定不存在的值。</exception>
</member>
<member name="M:System.Web.Helpers.WebGridRow.System#Collections#IEnumerable#GetEnumerator">
<summary>返回一个可用于循环访问集合的枚举器。</summary>
<returns>一个可用于循环访问集合的枚举器。</returns>
</member>
<member name="M:System.Web.Helpers.WebGridRow.ToString">
<summary>返回一个表示 <see cref="T:System.Web.Helpers.WebGridRow" /> 实例的所有值的字符串。</summary>
<returns>表示行的值的字符串。</returns>
</member>
<member name="M:System.Web.Helpers.WebGridRow.TryGetMember(System.Dynamic.GetMemberBinder,System.Object@)">
<summary>返回指定联编程序所描述的 <see cref="T:System.Web.Helpers.WebGridRow" /> 成员的值。</summary>
<returns>如果成功检索了项的值,则为 true否则为 false。</returns>
<param name="binder">已绑定的属性成员的 getter。</param>
<param name="result">此方法返回时,其中包含的对象保留了 <paramref name="binder" /> 所描述的项的值。该参数未经初始化即被传递。</param>
</member>
<member name="P:System.Web.Helpers.WebGridRow.Value">
<summary>获取包含该行中每个值的属性成员的对象。</summary>
<returns>以属性的形式包含该行中每个值的对象。</returns>
</member>
<member name="P:System.Web.Helpers.WebGridRow.WebGrid">
<summary>获取该行所属的 <see cref="T:System.Web.Helpers.WebGrid" /> 实例。</summary>
<returns>包含该行的 <see cref="T:System.Web.Helpers.WebGrid" /> 实例。</returns>
</member>
<member name="T:System.Web.Helpers.WebImage">
<summary>表示用于显示和管理网页中图像的对象。</summary>
</member>
<member name="M:System.Web.Helpers.WebImage.#ctor(System.Byte[])">
<summary>使用可表示图像的字节数组来初始化 <see cref="T:System.Web.Helpers.WebImage" /> 类的新实例。</summary>
<param name="content">图像。</param>
</member>
<member name="M:System.Web.Helpers.WebImage.#ctor(System.IO.Stream)">
<summary>使用可表示图像的流来初始化 <see cref="T:System.Web.Helpers.WebImage" /> 类的新实例。</summary>
<param name="imageStream">图像。</param>
</member>
<member name="M:System.Web.Helpers.WebImage.#ctor(System.String)">
<summary>使用可表示图像位置的路径来初始化 <see cref="T:System.Web.Helpers.WebImage" /> 类的新实例。</summary>
<param name="filePath">包含图像的文件的路径。</param>
</member>
<member name="M:System.Web.Helpers.WebImage.AddImageWatermark(System.String,System.Int32,System.Int32,System.String,System.String,System.Int32,System.Int32)">
<summary>使用水印图像的路径添加水印图像。</summary>
<returns>打了水印的图像。</returns>
<param name="watermarkImageFilePath">包含水印图像的文件的路径。</param>
<param name="width">水印图像的宽度(以像素为单位)。</param>
<param name="height">水印图像的高度(以像素为单位)。</param>
<param name="horizontalAlign">水印图像的水平对齐。值可以为“靠左”、“靠右”或“居中”。</param>
<param name="verticalAlign">水印图像的垂直对齐。值可以为“靠上”、“居中”或“靠下”。</param>
<param name="opacity">水印图像的不透明度,已指定为 0 和 100 之间的某个值。</param>
<param name="padding">水印图像周围的边距的大小(以像素为单位)。</param>
</member>
<member name="M:System.Web.Helpers.WebImage.AddImageWatermark(System.Web.Helpers.WebImage,System.Int32,System.Int32,System.String,System.String,System.Int32,System.Int32)">
<summary>使用指定图像对象添加水印图像。</summary>
<returns>打了水印的图像。</returns>
<param name="watermarkImage">
<see cref="T:System.Web.Helpers.WebImage" /> 对象。</param>
<param name="width">水印图像的宽度(以像素为单位)。</param>
<param name="height">水印图像的高度(以像素为单位)。</param>
<param name="horizontalAlign">水印图像的水平对齐。值可以为“靠左”、“靠右”或“居中”。</param>
<param name="verticalAlign">水印图像的垂直对齐。值可以为“靠上”、“居中”或“靠下”。</param>
<param name="opacity">水印图像的不透明度,已指定为 0 和 100 之间的某个值。</param>
<param name="padding">水印图像周围的边距的大小(以像素为单位)。</param>
</member>
<member name="M:System.Web.Helpers.WebImage.AddTextWatermark(System.String,System.String,System.Int32,System.String,System.String,System.String,System.String,System.Int32,System.Int32)">
<summary>在图像中添加水印文本。</summary>
<returns>打了水印的图像。</returns>
<param name="text">要用作水印的文本。</param>
<param name="fontColor">水印文本的颜色。</param>
<param name="fontSize">水印文本的字体大小。</param>
<param name="fontStyle">水印文本的字体样式。</param>
<param name="fontFamily">水印文本的字体类型。</param>
<param name="horizontalAlign">水印文本的水平对齐。值可以为“靠左”、“靠右”或“居中”。</param>
<param name="verticalAlign">水印文本的垂直对齐。值可以为“靠上”、“居中”或“靠下”。</param>
<param name="opacity">水印图像的不透明度,已指定为 0 和 100 之间的某个值。</param>
<param name="padding">水印文本周围的边距的大小(以像素为单位)。</param>
</member>
<member name="M:System.Web.Helpers.WebImage.Clone">
<summary>复制 <see cref="T:System.Web.Helpers.WebImage" /> 对象。</summary>
<returns>图像。</returns>
</member>
<member name="M:System.Web.Helpers.WebImage.Crop(System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>剪切图像。</summary>
<returns>剪切的图像。</returns>
<param name="top">要从顶部删除的像素数。</param>
<param name="left">要从左侧删除的像素数。</param>
<param name="bottom">要从底部删除的像素数。</param>
<param name="right">要从右侧删除的像素数。</param>
</member>
<member name="P:System.Web.Helpers.WebImage.FileName">
<summary>获取或设置 <see cref="T:System.Web.Helpers.WebImage" /> 对象的文件名。</summary>
<returns>文件名。</returns>
</member>
<member name="M:System.Web.Helpers.WebImage.FlipHorizontal">
<summary>水平翻转图像。</summary>
<returns>翻转的图像。</returns>
</member>
<member name="M:System.Web.Helpers.WebImage.FlipVertical">
<summary>垂直翻转图像。</summary>
<returns>翻转的图像。</returns>
</member>
<member name="M:System.Web.Helpers.WebImage.GetBytes(System.String)">
<summary>以字节数组形式返回图像。</summary>
<returns>图像。</returns>
<param name="requestedFormat">
<see cref="T:System.Web.Helpers.WebImage" /> 对象的 <see cref="P:System.Web.Helpers.WebImage.ImageFormat" /> 值。</param>
</member>
<member name="M:System.Web.Helpers.WebImage.GetImageFromRequest(System.String)">
<summary>返回已使用浏览器上载的图像。</summary>
<returns>图像。</returns>
<param name="postedFileName">(可选)已发布的文件的名称。如果未指定文件名,将返回第一个上载的文件。</param>
</member>
<member name="P:System.Web.Helpers.WebImage.Height">
<summary>获取图像的高度(以像素为单位)。</summary>
<returns>高度。</returns>
</member>
<member name="P:System.Web.Helpers.WebImage.ImageFormat">
<summary>获取图像的格式例如“jpeg”或“png”</summary>
<returns>图像的文件格式。</returns>
</member>
<member name="M:System.Web.Helpers.WebImage.Resize(System.Int32,System.Int32,System.Boolean,System.Boolean)">
<summary>调整图像大小。</summary>
<returns>已调整大小的图像。</returns>
<param name="width">
<see cref="T:System.Web.Helpers.WebImage" /> 对象的宽度(以像素为单位)。</param>
<param name="height">
<see cref="T:System.Web.Helpers.WebImage" /> 对象的高度(以像素为单位)。</param>
<param name="preserveAspectRatio">若要保留图像的纵横比,则为 true否则为 false。</param>
<param name="preventEnlarge">若要防止放大图像,则为 true否则为 false。</param>
</member>
<member name="M:System.Web.Helpers.WebImage.RotateLeft">
<summary>将图像旋转到左侧。</summary>
<returns>已旋转的图像。</returns>
</member>
<member name="M:System.Web.Helpers.WebImage.RotateRight">
<summary>将图像旋转到右侧。</summary>
<returns>已旋转的图像。</returns>
</member>
<member name="M:System.Web.Helpers.WebImage.Save(System.String,System.String,System.Boolean)">
<summary>使用指定文件名保存图像。</summary>
<returns>图像。</returns>
<param name="filePath">用于保存图像的路径。</param>
<param name="imageFormat">保存图像文件时要使用的格式如“gif”或“png”。</param>
<param name="forceCorrectExtension">若要对 <paramref name="imageFormat" /> 中指定的格式强制使用正确的文件名扩展名,则为 true否则为 false。如果文件类型与指定文件名扩展名不匹配<paramref name="forceCorrectExtension" /> 为 true则会将正确的扩展名附加到文件名后面。例如名为 Photograph.txt 的 PNG 文件将使用名称 Photograph.txt.png 进行保存。</param>
</member>
<member name="P:System.Web.Helpers.WebImage.Width">
<summary>获取图像的宽度(以像素为单位)。</summary>
<returns>宽度。</returns>
</member>
<member name="M:System.Web.Helpers.WebImage.Write(System.String)">
<summary>将图像呈现到浏览器。</summary>
<returns>图像。</returns>
<param name="requestedFormat">(可选)写入图像时要使用的文件格式。</param>
</member>
<member name="T:System.Web.Helpers.WebMail">
<summary>提供使用简单邮件传输协议 (SMTP) 构建并发送电子邮件的方法。</summary>
</member>
<member name="P:System.Web.Helpers.WebMail.EnableSsl">
<summary>获取或设置一个值,该值指示在发送电子邮件时是否使用安全套接字层 (SSL) 来加密连接。</summary>
<returns>如果使用 SSL 来加密连接,则为 true否则为 false。</returns>
</member>
<member name="P:System.Web.Helpers.WebMail.From">
<summary>获取或设置发件人的电子邮件地址。</summary>
<returns>发件人的电子邮件地址。</returns>
</member>
<member name="P:System.Web.Helpers.WebMail.Password">
<summary>获取或设置发件人的电子邮件帐户的密码。</summary>
<returns>发件人的密码。</returns>
</member>
<member name="M:System.Web.Helpers.WebMail.Send(System.String,System.String,System.String,System.String,System.String,System.Collections.Generic.IEnumerable{System.String},System.Boolean,System.Collections.Generic.IEnumerable{System.String},System.String,System.String,System.String,System.String,System.String)">
<summary>将指定邮件发送到进行传递的 SMTP 服务器。</summary>
<param name="to">收件人的电子邮件地址。使用分号 (;) 分隔多名收件人。</param>
<param name="subject">电子邮件的主题行。</param>
<param name="body">电子邮件的正文。如果 <paramref name="isBodyHtml" /> 为 true则将正文中的 HTML 解释为标记。</param>
<param name="from">(可选)邮件发件人的电子邮件地址;如果不指定发送人,则为 null。默认值为 null。</param>
<param name="cc">(可选)向其发送邮件副本的其他收件人的电子邮件地址;如果没有其他收件人,则为 null。使用分号 (;) 分隔多名收件人。默认值为 null。</param>
<param name="filesToAttach">(可选)文件名的集合,用于指定要附加到电子邮件中的文件;如果没有要附加的文件,则为 null。默认值为 null。</param>
<param name="isBodyHtml">(可选)若为 true则指定电子邮件正文为 HTML 格式;若为 false则指示正文为纯文本格式。默认值为 true。</param>
<param name="additionalHeaders">(可选)标头的集合,可添加到此电子邮件包含的正常 SMTP 标头中;如果不发送其他标头,则为 null。默认值为 null。</param>
<param name="bcc">(可选)向其发送邮件“密送”副本的其他收件人的电子邮件地址;如果没有其他收件人,则为 null。使用分号 (;) 分隔多名收件人。默认值为 null。</param>
<param name="contentEncoding">(可选)用于邮件正文的编码。可能值为 <see cref="T:System.Text.Encoding" /> 类的属性值,如 <see cref="P:System.Text.Encoding.UTF8" />。默认值为 null。</param>
<param name="headerEncoding">(可选)用于邮件标题的编码。可能值为 <see cref="T:System.Text.Encoding" /> 类的属性值,如 <see cref="P:System.Text.Encoding.UTF8" />。默认值为 null。</param>
<param name="priority">(可选)用于指定邮件优先级的值(“常规”、“低”、“高”)。默认值为“常规”。</param>
<param name="replyTo">(可选)收件人回复邮件时将使用的电子邮件地址。默认值为 null表示回复地址为 From 属性的值。</param>
</member>
<member name="P:System.Web.Helpers.WebMail.SmtpPort">
<summary>获取或设置用于 SMTP 事务的端口。</summary>
<returns>用于 SMTP 事务的端口。</returns>
</member>
<member name="P:System.Web.Helpers.WebMail.SmtpServer">
<summary>获取或设置用于传送电子邮件的 SMTP 服务器的名称。</summary>
<returns>SMTP 服务器。</returns>
</member>
<member name="P:System.Web.Helpers.WebMail.SmtpUseDefaultCredentials">
<summary>获取或设置指示是否与请求一起发送默认凭据的值。</summary>
<returns>如果与邮件一起发送凭据,则为 true否则为 false。</returns>
</member>
<member name="P:System.Web.Helpers.WebMail.UserName">
<summary>获取或设置用于发送电子邮件的电子邮件帐户名。</summary>
<returns>用户帐户的名称。</returns>
</member>
</members>
</doc>

View File

@@ -0,0 +1,60 @@
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>System.Web.WebPages.Deployment</name>
</assembly>
<members>
<member name="T:System.Web.WebPages.Deployment.PreApplicationStartCode">
<summary>为 Web Pages 部署应用程序预启动代码提供注册点。</summary>
</member>
<member name="M:System.Web.WebPages.Deployment.PreApplicationStartCode.Start">
<summary>注册 Web Pages 部署应用程序预启动代码。</summary>
</member>
<member name="T:System.Web.WebPages.Deployment.WebPagesDeployment">
<summary>此类型/成员支持 .NET Framework 基础结构,不能在代码中直接使用。提供用于获取有关 Web 应用程序的部署信息的方法。</summary>
</member>
<member name="M:System.Web.WebPages.Deployment.WebPagesDeployment.GetAssemblyPath(System.Version)">
<summary>此类型/成员支持 .NET Framework 基础结构,不能在代码中直接使用。获取 Web Pages 部署的程序集路径。</summary>
<returns>Web Pages 部署的程序集路径。</returns>
<param name="version">Web Pages 版本。</param>
</member>
<member name="M:System.Web.WebPages.Deployment.WebPagesDeployment.GetExplicitWebPagesVersion(System.String)">
<summary>此类型/成员支持 .NET Framework 基础结构,不能在代码中直接使用。从给定的二进制路径获取 Web Pages 版本。</summary>
<returns>Web Pages 版本。</returns>
<param name="path">Web Pages 的二进制路径。</param>
</member>
<member name="M:System.Web.WebPages.Deployment.WebPagesDeployment.GetIncompatibleDependencies(System.String)">
<summary>此类型/成员支持 .NET Framework 基础结构,不能在代码中直接使用。从给定的路径获取程序集引用,而不管 Web Pages 版本为何。</summary>
<returns>包含 Web Pages 及其版本的程序集引用的字典。</returns>
<param name="appPath">Web Pages 应用程序的路径。</param>
</member>
<member name="M:System.Web.WebPages.Deployment.WebPagesDeployment.GetMaxVersion">
<summary>此类型/成员支持 .NET Framework 基础结构,不能在代码中直接使用。获取 Web Pages 加载的程序集的最大版本。</summary>
<returns>Web Pages 加载的程序集的最大版本。</returns>
</member>
<member name="M:System.Web.WebPages.Deployment.WebPagesDeployment.GetVersion(System.String)">
<summary>从给定的路径获取 Web Pages 版本。</summary>
<returns>Web Pages 版本。</returns>
<param name="path">应用程序根目录的路径。</param>
</member>
<member name="M:System.Web.WebPages.Deployment.WebPagesDeployment.GetVersionWithoutEnabledCheck(System.String)">
<summary>此类型/成员支持 .NET Framework 基础结构,不能在代码中直接使用。使用具有指定路径的配置设置获取 Web Pages 版本。</summary>
<returns>Web Pages 版本。</returns>
<param name="path">应用程序设置的路径。</param>
</member>
<member name="M:System.Web.WebPages.Deployment.WebPagesDeployment.GetWebPagesAssemblies">
<summary>此类型/成员支持 .NET Framework 基础结构,不能在代码中直接使用。返回 Web Pages 部署的程序集。</summary>
<returns>包含此 Web Pages 部署的程序集的列表。</returns>
</member>
<member name="M:System.Web.WebPages.Deployment.WebPagesDeployment.IsEnabled(System.String)">
<summary>此类型/成员支持 .NET Framework 基础结构,不能在代码中直接使用。指示是否启用 Web Pages 部署。</summary>
<returns>如果启用了 Web Pages 部署,则为 true否则为 false。</returns>
<param name="path">Web Pages 部署的路径。</param>
</member>
<member name="M:System.Web.WebPages.Deployment.WebPagesDeployment.IsExplicitlyDisabled(System.String)">
<summary>此类型/成员支持 .NET Framework 基础结构,不能在代码中直接使用。指示是否显式禁用 Web Pages 部署。</summary>
<returns>如果显式禁用了 Web Pages 部署,则为 true否则为 false。</returns>
<param name="path">Web Pages 部署的路径。</param>
</member>
</members>
</doc>

View File

@@ -0,0 +1,294 @@
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>System.Web.WebPages.Razor</name>
</assembly>
<members>
<member name="T:System.Web.WebPages.Razor.CompilingPathEventArgs">
<summary>此类型/成员支持 .NET Framework 基础结构,不能在代码中直接使用。表示包含事件数据的编译路径的基类。</summary>
</member>
<member name="M:System.Web.WebPages.Razor.CompilingPathEventArgs.#ctor(System.String,System.Web.WebPages.Razor.WebPageRazorHost)">
<summary>此类型/成员支持 .NET Framework 基础结构,不能在代码中直接使用。初始化 <see cref="T:System.Web.WebPages.Razor.CompilingPathEventArgs" /> 类的新实例。</summary>
<param name="virtualPath">虚拟路径的字符串。</param>
<param name="host">网页 Razor 的主机。</param>
</member>
<member name="P:System.Web.WebPages.Razor.CompilingPathEventArgs.Host">
<summary>此类型/成员支持 .NET Framework 基础结构,不能在代码中直接使用。获取或设置网页 Razor 的主机。</summary>
<returns>网页 Razor 的主机。</returns>
</member>
<member name="P:System.Web.WebPages.Razor.CompilingPathEventArgs.VirtualPath">
<summary>此类型/成员支持 .NET Framework 基础结构,不能在代码中直接使用。获取网页的虚拟路径。</summary>
<returns>网页的虚拟路径。</returns>
</member>
<member name="T:System.Web.WebPages.Razor.PreApplicationStartCode">
<summary>此类型/成员支持 .NET Framework 基础结构,不能在代码中直接使用。</summary>
</member>
<member name="M:System.Web.WebPages.Razor.PreApplicationStartCode.Start">
<summary>此类型/成员支持 .NET Framework 基础结构,不能在代码中直接使用。</summary>
</member>
<member name="T:System.Web.WebPages.Razor.RazorBuildProvider">
<summary>此类型/成员支持 .NET Framework 基础结构,不能在代码中直接使用。表示 Razor 的生成提供程序。</summary>
</member>
<member name="M:System.Web.WebPages.Razor.RazorBuildProvider.#ctor">
<summary>此类型/成员支持 .NET Framework 基础结构,不能在代码中直接使用。初始化 <see cref="T:System.Web.WebPages.Razor.RazorBuildProvider" /> 类的新实例。</summary>
</member>
<member name="M:System.Web.WebPages.Razor.RazorBuildProvider.AddVirtualPathDependency(System.String)">
<summary>此类型/成员支持 .NET Framework 基础结构,不能在代码中直接使用。将虚拟路径依赖关系添加到集合中。</summary>
<param name="dependency">要添加的虚拟路径依赖关系。</param>
</member>
<member name="P:System.Web.WebPages.Razor.RazorBuildProvider.AssemblyBuilder">
<summary>此类型/成员支持 .NET Framework 基础结构,不能在代码中直接使用。获取 Razor 环境的程序集生成器。</summary>
<returns>程序集生成器。</returns>
</member>
<member name="P:System.Web.WebPages.Razor.RazorBuildProvider.CodeCompilerType">
<summary>此类型/成员支持 .NET Framework 基础结构,不能在代码中直接使用。获取 Razor 环境的编译器设置。</summary>
</member>
<member name="E:System.Web.WebPages.Razor.RazorBuildProvider.CodeGenerationCompleted">
<summary>此类型/成员支持 .NET Framework 基础结构,不能在代码中直接使用。在代码生成完成时发生。</summary>
</member>
<member name="E:System.Web.WebPages.Razor.RazorBuildProvider.CodeGenerationStarted">
<summary>此类型/成员支持 .NET Framework 基础结构,不能在代码中直接使用。在代码生成启动时发生。</summary>
</member>
<member name="E:System.Web.WebPages.Razor.RazorBuildProvider.CompilingPath">
<summary>此类型/成员支持 .NET Framework 基础结构,不能在代码中直接使用。在使用新的虚拟路径编译时发生。</summary>
</member>
<member name="M:System.Web.WebPages.Razor.RazorBuildProvider.CreateHost">
<summary>此类型/成员支持 .NET Framework 基础结构,不能在代码中直接使用。根据 Web 配置创建 Razor 引擎主机实例。</summary>
<returns>Razor 引擎主机实例。</returns>
</member>
<member name="M:System.Web.WebPages.Razor.RazorBuildProvider.GenerateCode(System.Web.Compilation.AssemblyBuilder)">
<summary>此类型/成员支持 .NET Framework 基础结构,不能在代码中直接使用。使用提供的程序集生成器生成代码。</summary>
<param name="assemblyBuilder">程序集生成器。</param>
</member>
<member name="M:System.Web.WebPages.Razor.RazorBuildProvider.GetGeneratedType(System.CodeDom.Compiler.CompilerResults)">
<summary>此类型/成员支持 .NET Framework 基础结构,不能在代码中直接使用。获取所生成代码的类型。</summary>
<returns>所生成代码的类型。</returns>
<param name="results">代码编译的结果。</param>
</member>
<member name="M:System.Web.WebPages.Razor.RazorBuildProvider.GetHostFromConfig">
<summary>此类型/成员支持 .NET Framework 基础结构,不能在代码中直接使用。根据 Web 配置创建 Razor 引擎主机实例。</summary>
<returns>Razor 引擎主机实例。</returns>
</member>
<member name="M:System.Web.WebPages.Razor.RazorBuildProvider.InternalOpenReader">
<summary>此类型/成员支持 .NET Framework 基础结构,不能在代码中直接使用。打开内部文本读取器。</summary>
<returns>内部文本读取器。</returns>
</member>
<member name="M:System.Web.WebPages.Razor.RazorBuildProvider.OnBeforeCompilePath(System.Web.WebPages.Razor.CompilingPathEventArgs)">
<summary>此类型/成员支持 .NET Framework 基础结构,不能在代码中直接使用。引发 CompilingPath 事件。</summary>
<param name="args">为 CompilingPath 事件提供的数据。</param>
</member>
<member name="P:System.Web.WebPages.Razor.RazorBuildProvider.VirtualPath">
<summary>此类型/成员支持 .NET Framework 基础结构,不能在代码中直接使用。获取源代码的虚拟路径。</summary>
<returns>源代码的虚拟路径。</returns>
</member>
<member name="P:System.Web.WebPages.Razor.RazorBuildProvider.VirtualPathDependencies">
<summary>此类型/成员支持 .NET Framework 基础结构,不能在代码中直接使用。获取依赖项的虚拟路径的集合。</summary>
<returns>依赖项的虚拟路径的集合。</returns>
</member>
<member name="T:System.Web.WebPages.Razor.WebCodeRazorHost">
<summary>此类型/成员支持 .NET Framework 基础结构,不能在代码中直接使用。表示网页的 Web 代码 Razor 主机。</summary>
</member>
<member name="M:System.Web.WebPages.Razor.WebCodeRazorHost.#ctor(System.String)">
<summary>此类型/成员支持 .NET Framework 基础结构,不能在代码中直接使用。初始化 <see cref="T:System.Web.WebPages.Razor.WebCodeRazorHost" /> 类的新实例。</summary>
<param name="virtualPath">虚拟路径。</param>
</member>
<member name="M:System.Web.WebPages.Razor.WebCodeRazorHost.#ctor(System.String,System.String)">
<summary>此类型/成员支持 .NET Framework 基础结构,不能在代码中直接使用。初始化 <see cref="T:System.Web.WebPages.Razor.WebCodeRazorHost" /> 类的新实例。</summary>
<param name="virtualPath">虚拟路径。</param>
<param name="physicalPath">物理路径。</param>
</member>
<member name="M:System.Web.WebPages.Razor.WebCodeRazorHost.GetClassName(System.String)">
<summary>此类型/成员支持 .NET Framework 基础结构,不能在代码中直接使用。返回该实例的类名。</summary>
<returns>该实例的类名。</returns>
<param name="virtualPath">虚拟路径。</param>
</member>
<member name="M:System.Web.WebPages.Razor.WebCodeRazorHost.PostProcessGeneratedCode(System.Web.Razor.Generator.CodeGeneratorContext)">
<summary>生成 Web 代码 Razor 主机的后处理代码。</summary>
<param name="context">生成器代码上下文。</param>
</member>
<member name="T:System.Web.WebPages.Razor.WebPageRazorHost">
<summary>此类型/成员支持 .NET Framework 基础结构,不能在代码中直接使用。表示网页中的 Razor 主机。</summary>
</member>
<member name="M:System.Web.WebPages.Razor.WebPageRazorHost.#ctor(System.String)">
<summary>此类型/成员支持 .NET Framework 基础结构,不能在代码中直接使用。使用指定的虚拟文件路径初始化 <see cref="T:System.Web.WebPages.Razor.WebPageRazorHost" /> 类的新实例。</summary>
<param name="virtualPath">虚拟文件路径。</param>
</member>
<member name="M:System.Web.WebPages.Razor.WebPageRazorHost.#ctor(System.String,System.String)">
<summary>此类型/成员支持 .NET Framework 基础结构,不能在代码中直接使用。使用指定的虚拟和物理文件路径初始化 <see cref="T:System.Web.WebPages.Razor.WebPageRazorHost" /> 类的新实例。</summary>
<param name="virtualPath">虚拟文件路径。</param>
<param name="physicalPath">物理文件路径。</param>
</member>
<member name="M:System.Web.WebPages.Razor.WebPageRazorHost.AddGlobalImport(System.String)">
<summary>此类型/成员支持 .NET Framework 基础结构,不能在代码中直接使用。在网页上添加全局导入。</summary>
<param name="ns">通知服务名称。</param>
</member>
<member name="P:System.Web.WebPages.Razor.WebPageRazorHost.CodeLanguage">
<summary>此类型/成员支持 .NET Framework 基础结构,不能在代码中直接使用。获取 <see cref="T:System.Web.Razor.RazorCodeLanguage" /></summary>
<returns>
<see cref="T:System.Web.Razor.RazorCodeLanguage" /></returns>
</member>
<member name="M:System.Web.WebPages.Razor.WebPageRazorHost.CreateMarkupParser">
<summary>此类型/成员支持 .NET Framework 基础结构,不能在代码中直接使用。创建标记分析器。</summary>
<returns>标记分析器。</returns>
</member>
<member name="P:System.Web.WebPages.Razor.WebPageRazorHost.DefaultBaseClass">
<summary>此类型/成员支持 .NET Framework 基础结构,不能在代码中直接使用。获取或设置 DefaultBaseClass 的值。</summary>
<returns>DefaultBaseClass 的值。</returns>
</member>
<member name="P:System.Web.WebPages.Razor.WebPageRazorHost.DefaultClassName">
<summary>此类型/成员支持 .NET Framework 基础结构,不能在代码中直接使用。获取或设置默认类的名称。</summary>
<returns>默认类的名称。</returns>
</member>
<member name="P:System.Web.WebPages.Razor.WebPageRazorHost.DefaultDebugCompilation">
<summary>此类型/成员支持 .NET Framework 基础结构,不能在代码中直接使用。获取或设置一个指示调试编译是否设置为默认值的值。</summary>
<returns>如果调试编译设置为默认值,则为 true否则为 false。</returns>
</member>
<member name="P:System.Web.WebPages.Razor.WebPageRazorHost.DefaultPageBaseClass">
<summary>此类型/成员支持 .NET Framework 基础结构,不能在代码中直接使用。获取或设置默认页的基类。</summary>
<returns>默认页的基类。</returns>
</member>
<member name="M:System.Web.WebPages.Razor.WebPageRazorHost.GetClassName(System.String)">
<summary>此类型/成员支持 .NET Framework 基础结构,不能在代码中直接使用。检索指定网页所属的类的名称。</summary>
<returns>指定网页所属的类的名称。</returns>
<param name="virtualPath">虚拟文件路径。</param>
</member>
<member name="M:System.Web.WebPages.Razor.WebPageRazorHost.GetCodeLanguage">
<summary>此类型/成员支持 .NET Framework 基础结构,不能在代码中直接使用。获取在网页中指定的代码语言。</summary>
<returns>在网页中指定的代码语言。</returns>
</member>
<member name="M:System.Web.WebPages.Razor.WebPageRazorHost.GetGlobalImports">
<summary>此类型/成员支持 .NET Framework 基础结构,不能在代码中直接使用。获取网页的全局导入。</summary>
<returns>网页的全局导入。</returns>
</member>
<member name="P:System.Web.WebPages.Razor.WebPageRazorHost.InstrumentedSourceFilePath">
<summary>此类型/成员支持 .NET Framework 基础结构,不能在代码中直接使用。获取或设置检测到的源文件的文件路径。</summary>
<returns>检测到的源文件的文件路径。</returns>
</member>
<member name="P:System.Web.WebPages.Razor.WebPageRazorHost.IsSpecialPage">
<summary>此类型/成员支持 .NET Framework 基础结构,不能在代码中直接使用。获取一个值,该值指示网页是否为特殊页。</summary>
<returns>如果网页是特殊页,则为 true否则为 false。</returns>
</member>
<member name="P:System.Web.WebPages.Razor.WebPageRazorHost.PhysicalPath">
<summary>此类型/成员支持 .NET Framework 基础结构,不能在代码中直接使用。获取 Razor 主机的物理文件系统路径。</summary>
<returns>Razor 主机的物理文件系统路径。</returns>
</member>
<member name="M:System.Web.WebPages.Razor.WebPageRazorHost.PostProcessGeneratedCode(System.Web.Razor.Generator.CodeGeneratorContext)">
<summary>此类型/成员支持 .NET Framework 基础结构,不能在代码中直接使用。获取处理之后生成的代码。</summary>
<param name="context">
<see cref="T:System.Web.Razor.Generator.CodeGeneratorContext" /></param>
</member>
<member name="M:System.Web.WebPages.Razor.WebPageRazorHost.RegisterSpecialFile(System.String,System.String)">
<summary>此类型/成员支持 .NET Framework 基础结构,不能在代码中直接使用。使用指定文件名和基类型名称注册特殊文件。</summary>
<param name="fileName">文件名。</param>
<param name="baseTypeName">基类型名称。</param>
</member>
<member name="M:System.Web.WebPages.Razor.WebPageRazorHost.RegisterSpecialFile(System.String,System.Type)">
<summary>此类型/成员支持 .NET Framework 基础结构,不能在代码中直接使用。使用指定文件名和基类型注册特殊文件。</summary>
<param name="fileName">文件名。</param>
<param name="baseType">基文件的类型。</param>
</member>
<member name="P:System.Web.WebPages.Razor.WebPageRazorHost.VirtualPath">
<summary>此类型/成员支持 .NET Framework 基础结构,不能在代码中直接使用。获取虚拟文件路径。</summary>
<returns>虚拟文件路径。</returns>
</member>
<member name="T:System.Web.WebPages.Razor.WebRazorHostFactory">
<summary>此类型/成员支持 .NET Framework 基础结构,不能在代码中直接使用。创建主机文件的实例。</summary>
</member>
<member name="M:System.Web.WebPages.Razor.WebRazorHostFactory.#ctor">
<summary>此类型/成员支持 .NET Framework 基础结构,不能在代码中直接使用。初始化 <see cref="T:System.Web.WebPages.Razor.WebRazorHostFactory" /> 类的新实例。</summary>
</member>
<member name="M:System.Web.WebPages.Razor.WebRazorHostFactory.ApplyConfigurationToHost(System.Web.WebPages.Razor.Configuration.RazorPagesSection,System.Web.WebPages.Razor.WebPageRazorHost)">
<summary>此类型/成员支持 .NET Framework 基础结构,不能在代码中直接使用。从配置文件加载服务描述信息并将这些信息应用到主机。</summary>
<param name="config">配置。</param>
<param name="host">网页 Razor 主机。</param>
</member>
<member name="M:System.Web.WebPages.Razor.WebRazorHostFactory.CreateDefaultHost(System.String)">
<summary>此类型/成员支持 .NET Framework 基础结构,不能在代码中直接使用。使用指定的虚拟路径创建默认主机。</summary>
<returns>默认主机。</returns>
<param name="virtualPath">文件的虚拟路径。</param>
</member>
<member name="M:System.Web.WebPages.Razor.WebRazorHostFactory.CreateDefaultHost(System.String,System.String)">
<summary>此类型/成员支持 .NET Framework 基础结构,不能在代码中直接使用。使用指定的虚拟路径和物理路径创建默认主机。</summary>
<returns>默认主机。</returns>
<param name="virtualPath">文件的虚拟路径。</param>
<param name="physicalPath">物理文件系统路径。</param>
</member>
<member name="M:System.Web.WebPages.Razor.WebRazorHostFactory.CreateHost(System.String,System.String)">
<summary>此类型/成员支持 .NET Framework 基础结构,不能在代码中直接使用。创建 Razor 主机。</summary>
<returns>Razor 主机。</returns>
<param name="virtualPath">目标文件的虚拟路径。</param>
<param name="physicalPath">目标文件的物理路径。</param>
</member>
<member name="M:System.Web.WebPages.Razor.WebRazorHostFactory.CreateHostFromConfig(System.String)">
<summary>此类型/成员支持 .NET Framework 基础结构,不能在代码中直接使用。创建配置中的主机。</summary>
<returns>配置中的主机。</returns>
<param name="virtualPath">目标文件的虚拟路径。</param>
</member>
<member name="M:System.Web.WebPages.Razor.WebRazorHostFactory.CreateHostFromConfig(System.String,System.String)">
<summary>此类型/成员支持 .NET Framework 基础结构,不能在代码中直接使用。创建配置中的主机。</summary>
<returns>配置中的主机。</returns>
<param name="virtualPath">文件的虚拟路径。</param>
<param name="physicalPath">物理文件系统路径。</param>
</member>
<member name="M:System.Web.WebPages.Razor.WebRazorHostFactory.CreateHostFromConfig(System.Web.WebPages.Razor.Configuration.RazorWebSectionGroup,System.String)">
<summary>此类型/成员支持 .NET Framework 基础结构,不能在代码中直接使用。创建配置中的主机。</summary>
<returns>配置中的主机。</returns>
<param name="config">配置。</param>
<param name="virtualPath">文件的虚拟路径。</param>
</member>
<member name="M:System.Web.WebPages.Razor.WebRazorHostFactory.CreateHostFromConfig(System.Web.WebPages.Razor.Configuration.RazorWebSectionGroup,System.String,System.String)">
<summary>此类型/成员支持 .NET Framework 基础结构,不能在代码中直接使用。创建配置中的主机。</summary>
<returns>配置中的主机。</returns>
<param name="config">配置。</param>
<param name="virtualPath">文件的虚拟路径。</param>
<param name="physicalPath">物理文件系统路径。</param>
</member>
<member name="T:System.Web.WebPages.Razor.Configuration.HostSection">
<summary>为 host 配置部分提供配置系统支持。</summary>
</member>
<member name="M:System.Web.WebPages.Razor.Configuration.HostSection.#ctor">
<summary>初始化 <see cref="T:System.Web.WebPages.Razor.Configuration.HostSection" /> 类的新实例。</summary>
</member>
<member name="P:System.Web.WebPages.Razor.Configuration.HostSection.FactoryType">
<summary>获取或设置宿主工厂。</summary>
<returns>宿主工厂。</returns>
</member>
<member name="F:System.Web.WebPages.Razor.Configuration.HostSection.SectionName">
<summary>表示 Razor 宿主环境的配置部分的名称。</summary>
</member>
<member name="T:System.Web.WebPages.Razor.Configuration.RazorPagesSection">
<summary>为 pages 配置部分提供配置系统支持。</summary>
</member>
<member name="M:System.Web.WebPages.Razor.Configuration.RazorPagesSection.#ctor">
<summary>初始化 <see cref="T:System.Web.WebPages.Razor.Configuration.RazorPagesSection" /> 类的新实例。</summary>
</member>
<member name="P:System.Web.WebPages.Razor.Configuration.RazorPagesSection.Namespaces">
<summary>获取或设置要添加到当前应用程序的 Web Pages 页的命名空间的集合。</summary>
<returns>命名空间的集合。</returns>
</member>
<member name="P:System.Web.WebPages.Razor.Configuration.RazorPagesSection.PageBaseType">
<summary>获取或设置页基类型类的名称。</summary>
<returns>页基类型类的名称。</returns>
</member>
<member name="F:System.Web.WebPages.Razor.Configuration.RazorPagesSection.SectionName">
<summary>表示 Razor 页配置部分的名称。</summary>
</member>
<member name="T:System.Web.WebPages.Razor.Configuration.RazorWebSectionGroup">
<summary>为 system.web.webPages.razor 配置部分提供配置系统支持。</summary>
</member>
<member name="M:System.Web.WebPages.Razor.Configuration.RazorWebSectionGroup.#ctor">
<summary>初始化 <see cref="T:System.Web.WebPages.Razor.Configuration.RazorWebSectionGroup" /> 类的新实例。</summary>
</member>
<member name="F:System.Web.WebPages.Razor.Configuration.RazorWebSectionGroup.GroupName">
<summary>表示 Razor Web 部分的配置部分的名称。包含静态的只读字符串“system.web.webPages.razor”。</summary>
</member>
<member name="P:System.Web.WebPages.Razor.Configuration.RazorWebSectionGroup.Host">
<summary>获取或设置 system.web.webPages.razor 部分组的 host 值。</summary>
<returns>主机值。</returns>
</member>
<member name="P:System.Web.WebPages.Razor.Configuration.RazorWebSectionGroup.Pages">
<summary>获取或设置 system.web.webPages.razor 部分的 pages 元素的值。</summary>
<returns>pages 元素的值。</returns>
</member>
</members>
</doc>

File diff suppressed because it is too large Load Diff