<summary>Retrieves the specified chart from the cache.</summary>
<returns>The chart.</returns>
<paramname="key">The ID of the cache item that contains the chart to retrieve. The key is set when you call the <seecref="M:System.Web.Helpers.Chart.SaveToCache(System.String,System.Int32,System.Boolean)"/> method.</param>
</member>
<membername="P:System.Web.Helpers.Chart.Height">
<summary>Gets or sets the height, in pixels, of the chart image.</summary>
<summary>Saves a chart in the system cache.</summary>
<returns>The ID of the cache item that contains the chart.</returns>
<paramname="key">The ID of the chart in the cache.</param>
<paramname="minutesToCache">The number of minutes to keep the chart image in the cache. The default is 20.</param>
<paramname="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>
<summary>Creates a <seecref="T:System.Web.Helpers.WebImage"/> object based on the current <seecref="T:System.Web.Helpers.Chart"/> object.</summary>
<returns>The chart.</returns>
<paramname="format">The format of the image to save the <seecref="T:System.Web.Helpers.WebImage"/> object as. The default is "jpeg". The <paramrefname="format"/> parameter is not case sensitive.</param>
</member>
<membername="P:System.Web.Helpers.Chart.Width">
<summary>Gets or set the width, in pixels, of the chart image.</summary>
<summary>A theme for 2D charting that features a visual container with a blue gradient, rounded edges, drop-shadowing, and high-contrast gridlines.</summary>
<summary>A theme for 2D charting that features a visual container with a green gradient, rounded edges, drop-shadowing, and low-contrast gridlines.</summary>
<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>
<membername="T:System.Web.Helpers.Crypto">
<summary>Provides methods to generate hash values and encrypt passwords or other sensitive data.</summary>
<summary>Initializes a new instance of the <seecref="T:System.Web.Helpers.DynamicJsonArray"/> class using the specified array element values.</summary>
<paramname="arrayValues">An array of objects that contains the values to add to the <seecref="T:System.Web.Helpers.DynamicJsonArray"/> instance.</param>
<summary>Returns an enumerator that can be used to iterate through the elements of the <seecref="T:System.Web.Helpers.DynamicJsonArray"/> instance.</summary>
<returns>An enumerator that can be used to iterate through the elements of the JSON array.</returns>
<summary>Tests the <seecref="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>
<paramname="binder">Provides information about the get operation.</param>
<paramname="result">When this method returns, contains null. This parameter is passed uninitialized.</param>
<summary>Initializes a new instance of the <seecref="T:System.Web.Helpers.DynamicJsonObject"/> class using the specified field values.</summary>
<paramname="values">A dictionary of property names and values to add to the <seecref="T:System.Web.Helpers.DynamicJsonObject"/> instance as dynamic members.</param>
<summary>Returns a list that contains the name of all dynamic members (JSON fields) of the <seecref="T:System.Web.Helpers.DynamicJsonObject"/> instance.</summary>
<returns>A list that contains the name of every dynamic member (JSON field).</returns>
<summary>Converts the <seecref="T:System.Web.Helpers.DynamicJsonObject"/> instance to a compatible type.</summary>
<returns>true in all cases.</returns>
<paramname="binder">Provides information about the conversion operation.</param>
<paramname="result">When this method returns, contains the result of the type conversion operation. This parameter is passed uninitialized.</param>
<exceptioncref="T:System.InvalidOperationException">The <seecref="T:System.Web.Helpers.DynamicJsonObject"/> instance could not be converted to the specified type.</exception>
<summary>Gets the value of a <seecref="T:System.Web.Helpers.DynamicJsonObject"/> field using the specified index.</summary>
<returns>true in all cases.</returns>
<paramname="binder">Provides information about the indexed get operation.</param>
<paramname="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, <paramrefname="result"/> contains null when this method returns.</param>
<paramname="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>
<summary>Gets the value of a <seecref="T:System.Web.Helpers.DynamicJsonObject"/> field using the specified name.</summary>
<returns>true in all cases.</returns>
<paramname="binder">Provides information about the get operation.</param>
<paramname="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>
<summary>Sets the value of a <seecref="T:System.Web.Helpers.DynamicJsonObject"/> field using the specified index.</summary>
<returns>true in all cases.</returns>
<paramname="binder">Provides information about the indexed set operation.</param>
<paramname="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>
<paramname="value">The value to set the field to.</param>
<summary>Converts a data object to a string in JavaScript Object Notation (JSON) format and adds the string to the specified <seecref="T:System.IO.TextWriter"/> object.</summary>
<paramname="value">The data object to convert.</param>
<paramname="writer">The object that contains the converted JSON data.</param>
</member>
<membername="T:System.Web.Helpers.ObjectInfo">
<summary>Renders the property names and values of the specified object and of any subobjects that it references.</summary>
<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>
<paramname="value">The object to render information for.</param>
<paramname="depth">Optional. Specifies the depth of nested subobjects to render information for. The default is 10.</param>
<paramname="enumerationLength">Optional. Specifies the maximum number of characters that the method displays for object values. The default is 1000.</param>
<summary>Inserts an item into the <seecref="T:System.Web.Helpers.WebCache"/> object.</summary>
<paramname="key">The identifier for the cache item.</param>
<paramname="value">The data to insert into the cache.</param>
<paramname="minutesToCache">Optional. The number of minutes to keep an item in the cache. The default is 20.</param>
<paramname="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 <paramrefname="minutesToCache"/> parameter, a cached item expires 20 minutes after it was last accessed.</param>
<exceptioncref="T:System.ArgumentOutOfRangeException">The value of <paramrefname="minutesToCache"/> is less than or equal to zero.</exception>
<exceptioncref="T:System.ArgumentOutOfRangeException">Sliding expiration is enabled and the value of <paramrefname="minutesToCache"/> is greater than a year.</exception>
</member>
<membername="T:System.Web.Helpers.WebGrid">
<summary>Displays data on a web page using an HTML table element.</summary>
<summary>Initializes a new instance of the <seecref="T:System.Web.Helpers.WebGrid"/> class.</summary>
<paramname="source">The data to display.</param>
<paramname="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 <paramrefname="source"/> parameter.</param>
<paramname="defaultSort">The name of the data column that is used to sort the grid by default.</param>
<paramname="rowsPerPage">The number of rows that are displayed on each page of the grid when paging is enabled. The default is 10.</param>
<paramname="canPage">true to specify that paging is enabled for the <seecref="T:System.Web.Helpers.WebGrid"/> instance; otherwise false. The default is true. </param>
<paramname="canSort">true to specify that sorting is enabled for the <seecref="T:System.Web.Helpers.WebGrid"/> instance; otherwise, false. The default is true.</param>
<paramname="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 <seecref="T:System.Web.Helpers.WebGrid"/> instance.</param>
<paramname="ajaxUpdateCallback">The name of the JavaScript function that is called after the HTML element specified by the <seecref="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>
<paramname="fieldNamePrefix">The prefix that is applied to all query-string fields that are associated with the <seecref="T:System.Web.Helpers.WebGrid"/> instance. This value is used in order to support multiple <seecref="T:System.Web.Helpers.WebGrid"/> instances on the same web page.</param>
<paramname="pageFieldName">The name of the query-string field that is used to specify the current page of the <seecref="T:System.Web.Helpers.WebGrid"/> instance.</param>
<paramname="selectionFieldName">The name of the query-string field that is used to specify the currently selected row of the <seecref="T:System.Web.Helpers.WebGrid"/> instance.</param>
<paramname="sortFieldName">The name of the query-string field that is used to specify the name of the data column that the <seecref="T:System.Web.Helpers.WebGrid"/> instance is sorted by.</param>
<paramname="sortDirectionFieldName">The name of the query-string field that is used to specify the direction in which the <seecref="T:System.Web.Helpers.WebGrid"/> instance is sorted.</param>
<summary>Gets the name of the JavaScript function to call after the HTML element that is associated with the <seecref="T:System.Web.Helpers.WebGrid"/> instance has been updated in response to an Ajax update request.</summary>
<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 <seecref="T:System.Web.Helpers.WebGrid"/> instance.</summary>
<summary>Creates a new <seecref="T:System.Web.Helpers.WebGridColumn"/> instance.</summary>
<returns>The new column.</returns>
<paramname="columnName">The name of the data column to associate with the <seecref="T:System.Web.Helpers.WebGridColumn"/> instance.</param>
<paramname="header">The text that is rendered in the header of the HTML table column that is associated with the <seecref="T:System.Web.Helpers.WebGridColumn"/> instance.</param>
<paramname="format">The function that is used to format the data values that are associated with the <seecref="T:System.Web.Helpers.WebGridColumn"/> instance.</param>
<paramname="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 <seecref="T:System.Web.Helpers.WebGridColumn"/> instance.</param>
<paramname="canSort">true to enable sorting in the <seecref="T:System.Web.Helpers.WebGrid"/> instance by the data values that are associated with the <seecref="T:System.Web.Helpers.WebGridColumn"/> instance; otherwise, false. The default is true.</param>
<summary>Gets a collection that contains the name of each data column that is bound to the <seecref="T:System.Web.Helpers.WebGrid"/> instance.</summary>
<returns>The collection of data column names.</returns>
<summary>Gets the prefix that is applied to all query-string fields that are associated with the <seecref="T:System.Web.Helpers.WebGrid"/> instance.</summary>
<returns>The query-string field prefix of the <seecref="T:System.Web.Helpers.WebGrid"/> instance.</returns>
<summary>Returns a JavaScript statement that can be used to update the HTML element that is associated with the <seecref="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 <seecref="T:System.Web.Helpers.WebGrid"/> instance.</returns>
<paramname="path">The URL of the web page that contains the <seecref="T:System.Web.Helpers.WebGrid"/> instance that is being updated. The URL can include query-string arguments.</param>
<summary>Returns the HTML markup that is used to render the <seecref="T:System.Web.Helpers.WebGrid"/> instance and using the specified paging options.</summary>
<returns>The HTML markup that represents the fully-populated <seecref="T:System.Web.Helpers.WebGrid"/> instance.</returns>
<paramname="tableStyle">The name of the CSS class that is used to style the whole table.</param>
<paramname="headerStyle">The name of the CSS class that is used to style the table header.</param>
<paramname="footerStyle">The name of the CSS class that is used to style the table footer.</param>
<paramname="rowStyle">The name of the CSS class that is used to style each table row.</param>
<paramname="alternatingRowStyle">The name of the CSS class that is used to style even-numbered table rows.</param>
<paramname="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>
<paramname="caption">The table caption.</param>
<paramname="displayHeader">true to display the table header; otherwise, false. The default is true.</param>
<paramname="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 <paramrefname="emptyRowCellValue"/> parameter.</param>
<paramname="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 <paramrefname="fillEmptyRows"/> parameter must be set to true to display these additional rows.</param>
<paramname="columns">A collection of <seecref="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>
<paramname="exclusions">A collection that contains the names of the data columns to exclude when the grid auto-populates columns.</param>
<paramname="mode">A bitwise combination of the enumeration values that specify methods that are provided for moving between pages of the <seecref="T:System.Web.Helpers.WebGrid"/> instance.</param>
<paramname="firstText">The text for the HTML link element that is used to link to the first page of the <seecref="T:System.Web.Helpers.WebGrid"/> instance. The <seecref="F:System.Web.Helpers.WebGridPagerModes.FirstLast"/> flag of the <paramrefname="mode"/> parameter must be set to display this page navigation element.</param>
<paramname="previousText">The text for the HTML link element that is used to link to previous page of the <seecref="T:System.Web.Helpers.WebGrid"/> instance. The <seecref="F:System.Web.Helpers.WebGridPagerModes.NextPrevious"/> flag of the <paramrefname="mode"/> parameter must be set to display this page navigation element.</param>
<paramname="nextText">The text for the HTML link element that is used to link to the next page of the <seecref="T:System.Web.Helpers.WebGrid"/> instance. The <seecref="F:System.Web.Helpers.WebGridPagerModes.NextPrevious"/> flag of the <paramrefname="mode"/> parameter must be set to display this page navigation element.</param>
<paramname="lastText">The text for the HTML link element that is used to link to the last page of the <seecref="T:System.Web.Helpers.WebGrid"/> instance. The <seecref="F:System.Web.Helpers.WebGridPagerModes.FirstLast"/> flag of the <paramrefname="mode"/> parameter must be set to display this page navigation element.</param>
<paramname="numericLinksCount">The number of numeric page links that are provided to nearby <seecref="T:System.Web.Helpers.WebGrid"/> pages. The text of each numeric page link contains the page number. The <seecref="F:System.Web.Helpers.WebGridPagerModes.Numeric"/> flag of the <paramrefname="mode"/> parameter must be set to display these page navigation elements.</param>
<paramname="htmlAttributes">An object that represents a collection of attributes (names and values) to set for the HTML table element that represents the <seecref="T:System.Web.Helpers.WebGrid"/> instance.</param>
<summary>Returns a value that indicates whether the <seecref="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>
<summary>Gets the full name of the query-string field that is used to specify the current page of the <seecref="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>
<summary>Returns the HTML markup that is used to provide the specified paging support for the <seecref="T:System.Web.Helpers.WebGrid"/> instance.</summary>
<returns>The HTML markup that provides paging support for the grid.</returns>
<paramname="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 <seecref="F:System.Web.Helpers.WebGridPagerModes.NextPrevious"/> and <seecref="F:System.Web.Helpers.WebGridPagerModes.Numeric"/> flags.</param>
<paramname="firstText">The text for the HTML link element that navigates to the first page of the grid.</param>
<paramname="previousText">The text for the HTML link element that navigates to the previous page of the grid.</param>
<paramname="nextText">The text for the HTML link element that navigates to the next page of the grid.</param>
<paramname="lastText">The text for the HTML link element that navigates to the last page of the grid.</param>
<paramname="numericLinksCount">The number of numeric page links to display. The default is 5.</param>
</member>
<membername="P:System.Web.Helpers.WebGrid.Rows">
<summary>Gets a list that contains the rows that are on the current page of the <seecref="T:System.Web.Helpers.WebGrid"/> instance after the grid has been sorted.</summary>
<summary>Gets the full name of the query-string field that is used to specify the selected row of the <seecref="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>
<summary>Gets the full name of the query-string field that is used to specify the sort direction of the <seecref="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>
<summary>Gets the full name of the query-string field that is used to specify the name of the data column that the <seecref="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>
<summary>Returns the HTML markup that is used to render the <seecref="T:System.Web.Helpers.WebGrid"/> instance.</summary>
<returns>The HTML markup that represents the fully-populated <seecref="T:System.Web.Helpers.WebGrid"/> instance.</returns>
<paramname="tableStyle">The name of the CSS class that is used to style the whole table.</param>
<paramname="headerStyle">The name of the CSS class that is used to style the table header.</param>
<paramname="footerStyle">The name of the CSS class that is used to style the table footer.</param>
<paramname="rowStyle">The name of the CSS class that is used to style each table row.</param>
<paramname="alternatingRowStyle">The name of the CSS class that is used to style even-numbered table rows.</param>
<paramname="selectedRowStyle">The name of the CSS class that is used use to style the selected table row.</param>
<paramname="caption">The table caption.</param>
<paramname="displayHeader">true to display the table header; otherwise, false. The default is true.</param>
<paramname="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 <paramrefname="emptyRowCellValue"/> parameter.</param>
<paramname="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 <paramrefname="fillEmptyRows"/> parameter must be set to true to display these additional rows.</param>
<paramname="columns">A collection of <seecref="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>
<paramname="exclusions">A collection that contains the names of the data columns to exclude when the grid auto-populates columns.</param>
<paramname="footer">A function that returns the HTML markup that is used to render the table footer.</param>
<paramname="htmlAttributes">An object that represents a collection of attributes (names and values) to set for the HTML table element that represents the <seecref="T:System.Web.Helpers.WebGrid"/> instance.</param>
<summary>Gets the total number of rows that the <seecref="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>
<membername="T:System.Web.Helpers.WebGridColumn">
<summary>Represents a column in a <seecref="T:System.Web.Helpers.WebGrid"/> instance.</summary>
<summary>Gets or sets a function that is used to format the data item that is associated with the <seecref="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>
<summary>Gets or sets the CSS class attribute that is rendered as part of the HTML table cells that are associated with the <seecref="T:System.Web.Helpers.WebGrid"/> column.</summary>
<returns>The CSS class attribute that is applied to cells that are associated with the column.</returns>
<summary>Specifies flags that describe the methods that are provided for moving between the pages of a <seecref="T:System.Web.Helpers.WebGrid"/> instance.This enumeration has a <seecref="T:System.FlagsAttribute"/> attribute that allows a bitwise combination of its member values.</summary>
<summary>Initializes a new instance of the <seecref="T:System.Web.Helpers.WebGridRow"/> class using the specified <seecref="T:System.Web.Helpers.WebGrid"/> instance, row value, and index.</summary>
<paramname="webGrid">The <seecref="T:System.Web.Helpers.WebGrid"/> instance that contains the row.</param>
<paramname="value">An object that contains a property member for each value in the row.</param>
<paramname="rowIndex">The index of the row.</param>
<summary>Returns the value of a <seecref="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>
<paramname="binder">The getter of the bound property member.</param>
<paramname="result">When this method returns, contains an object that holds the value of the item described by <paramrefname="binder"/>. This parameter is passed uninitialized.</param>
<summary>Returns the image as a byte array.</summary>
<returns>The image.</returns>
<paramname="requestedFormat">The <seecref="P:System.Web.Helpers.WebImage.ImageFormat"/> value of the <seecref="T:System.Web.Helpers.WebImage"/> object.</param>
<summary>Returns an image that has been uploaded using the browser.</summary>
<returns>The image.</returns>
<paramname="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>
<summary>Saves the image using the specified file name.</summary>
<returns>The image.</returns>
<paramname="filePath">The path to save the image to.</param>
<paramname="imageFormat">The format to use when the image file is saved, such as "gif", or "png".</param>
<paramname="forceCorrectExtension">true to force the correct file-name extension to be used for the format that is specified in <paramrefname="imageFormat"/>; otherwise, false. If there is a mismatch between the file type and the specified file-name extension, and if <paramrefname="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>
<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>
<membername="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>
<summary>Sends the specified message to an SMTP server for delivery.</summary>
<paramname="to">The email address of the recipient or recipients. Separate multiple recipients using a semicolon (;).</param>
<paramname="subject">The subject line for the email message.</param>
<paramname="body">The body of the email message. If <paramrefname="isBodyHtml"/> is true, HTML in the body is interpreted as markup.</param>
<paramname="from">(Optional) The email address of the message sender, or null to not specify a sender. The default value is null.</param>
<paramname="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>
<paramname="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>
<paramname="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>
<paramname="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>
<paramname="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>
<paramname="contentEncoding">(Optional) The encoding to use for the body of the message. Possible values are property values for the <seecref="T:System.Text.Encoding"/> class, such as <seecref="P:System.Text.Encoding.UTF8"/>. The default value is null.</param>
<paramname="headerEncoding">(Optional) The encoding to use for the header of the message. Possible values are property values for the <seecref="T:System.Text.Encoding"/> class, such as <seecref="P:System.Text.Encoding.UTF8"/>. The default value is null.</param>
<paramname="priority">(Optional) A value ("Normal", "Low", "High") that specifies the priority of the message. The default is "Normal".</param>
<paramname="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>