Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

445 lines
27 KiB
XML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?xml version="1.0" encoding="utf-8"?>
<Type Name="MailDefinition" FullName="System.Web.UI.WebControls.MailDefinition">
<TypeSignature Language="C#" Value="public sealed class MailDefinition : System.Web.UI.IStateManager" />
<AssemblyInfo>
<AssemblyName>System.Web</AssemblyName>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Base>
<BaseTypeName>System.Object</BaseTypeName>
</Base>
<Interfaces>
<Interface>
<InterfaceName>System.Web.UI.IStateManager</InterfaceName>
</Interface>
</Interfaces>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.Bindable(false)</AttributeName>
</Attribute>
</Attributes>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="T:System.Web.UI.WebControls.MailDefinition" /> class can be used by controls to create a <see cref="T:System.Net.Mail.MailMessage" /> object from a text file or a string that contains the body of the e-mail message. Use the <see cref="T:System.Web.UI.WebControls.MailDefinition" /> class to simplify creating predefined e-mail messages to be sent by a control. If you want to send e-mail not using a control, see the <see cref="N:System.Net.Mail" /> class.</para>
<para>You can make text substitutions in the body of the e-mail message by passing to the <see cref="M:System.Web.UI.WebControls.MailDefinition.CreateMailMessage(System.String,System.Collections.IDictionary,System.Web.UI.Control)" /> method an <see cref="T:System.Collections.IDictionary" /> instance that maps strings to their replacements.</para>
<para>The <see cref="T:System.Net.Mail.MailMessage" /> object created by the <see cref="T:System.Web.UI.WebControls.MailDefinition" /> class is sent using the <see cref="M:System.Net.Mail.SmtpClient.Send(System.String,System.String,System.String,System.String)" /> method of the <see cref="T:System.Net.Mail.SmtpClient" /> class. To be able to send e-mail, you must configure an SMTP mail server in your Web.config file. For more information, see the <format type="text/html"><a href="220b0329-e384-4e0c-86b4-0945ad17efd9">&lt;SMTP&gt; element</a></format>.</para>
<block subset="none" type="note">
<para>The <see cref="T:System.Web.UI.WebControls.MailDefinition" /> class does not support data binding. Properties of the <see cref="T:System.Web.UI.WebControls.MailDefinition" /> class cannot be bound to data using the &lt;%#   %&gt; data-binding expression syntax.</para>
</block>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Allows a control to create e-mail messages from text files or strings. This class cannot be inherited.</para>
</summary>
</Docs>
<Members>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public MailDefinition ();" />
<MemberType>Constructor</MemberType>
<Parameters />
<Docs>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.MailDefinition" /> class.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="BodyFileName">
<MemberSignature Language="C#" Value="public string BodyFileName { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.NotifyParentProperty(true)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.ComponentModel.DefaultValue("")</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Web.UI.WebControls.MailDefinition.BodyFileName" /> property specifies the location of the text file to use for the body of the e-mail message.</para>
<para>The <see cref="M:System.Web.UI.WebControls.MailDefinition.CreateMailMessage(System.String,System.Collections.IDictionary,System.Web.UI.Control)" /> method uses its <paramref name="owner" /> parameter to map the <see cref="P:System.Web.UI.WebControls.MailDefinition.BodyFileName" /> property to a path on the server. If the <paramref name="owner" /> parameter points to a control on an .aspx page or to the page itself, the <see cref="P:System.Web.UI.WebControls.MailDefinition.BodyFileName" /> property points to a text file in the same directory as the .aspx page. For example, if the .aspx page is located at C:\inetpub\wwwroot\default.aspx, the <see cref="T:System.Web.UI.WebControls.MailDefinition" /> control looks for the text file in the directory C:\inetpub\wwwroot.</para>
<para>If the <see cref="T:System.Web.UI.WebControls.MailDefinition" /> class is used in a user control contained in an .ascx file, the <see cref="P:System.Web.UI.WebControls.MailDefinition.BodyFileName" /> property points to a text file located in the same directory as the user control. For example, if the .aspx page is located at C:\inetpub\wwwroot\default.aspx and the user control is at C:\inetpub\wwwroot\controls\control.aspx, the <see cref="T:System.Web.UI.WebControls.MailDefinition" /> object looks for the text file in the directory C:\inetpub\wwwroot\controls.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the name of the file that contains text for the body of the e-mail message.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="CC">
<MemberSignature Language="C#" Value="public string CC { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.NotifyParentProperty(true)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.ComponentModel.DefaultValue("")</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Web.UI.WebControls.MailDefinition.CC" /> property contains a list of additional recipients of the e-mail message.</para>
<para>If the <see cref="P:System.Web.UI.WebControls.MailDefinition.CC" /> property contains an improperly formed e-mail address, the <see cref="M:System.Net.Mail.SmtpClient.Send(System.String,System.String,System.String,System.String)" /> method throws an <see cref="T:System.Web.HttpException" /> exception and the e-mail message is not sent.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets a comma-separated list of e-mail addresses to send a copy (CC) of the message to.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="CreateMailMessage">
<MemberSignature Language="C#" Value="public System.Net.Mail.MailMessage CreateMailMessage (string recipients, System.Collections.IDictionary replacements, System.Web.UI.Control owner);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Net.Mail.MailMessage</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="recipients" Type="System.String" />
<Parameter Name="replacements" Type="System.Collections.IDictionary" />
<Parameter Name="owner" Type="System.Web.UI.Control" />
</Parameters>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="M:System.Web.UI.WebControls.MailDefinition.CreateMailMessage(System.String,System.Collections.IDictionary,System.Web.UI.Control)" /> method creates a new <see cref="T:System.Net.Mail.MailMessage" /> object that can be sent using the <see cref="M:System.Net.Mail.SmtpClient.Send(System.String,System.String,System.String,System.String)" /> method.</para>
<para>The <see cref="P:System.Web.Mail.MailMessage.BodyFormat" /> property must be set to indicate whether the mail message should be formatted as plain text (<see cref="F:System.Web.Mail.MailFormat.Text" />) or HTML (<see cref="F:System.Web.Mail.MailFormat.Html" />). </para>
<para>The <paramref name="recipients" /> parameter contains a comma-separated list of recipients of the e-mail message. If the <paramref name="recipients" /> parameter contains an improperly formatted Internet e-mail address, the <see cref="M:System.Net.Mail.SmtpClient.Send(System.String,System.String,System.String,System.String)" /> method throws an <see cref="T:System.Web.HttpException" /> exception and the e-mail message is not sent.</para>
<para>The <paramref name="replacements" /> parameter is an <see cref="T:System.Collections.IDictionary" /> instance that contains a list of strings to substitute. Strings are replaced in the order in which they were added to the <see cref="T:System.Collections.IDictionary" /> collection, and they can overwrite earlier replacements.</para>
<para>The <paramref name="owner" /> parameter indicates which control is the parent of the <see cref="T:System.Web.UI.WebControls.MailDefinition" /> control. It determines which directory to search for the text file specified in the <see cref="P:System.Web.UI.WebControls.MailDefinition.BodyFileName" /> property.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Creates an e-mail message from a text file to send by means of SMTP (Simple Mail Transfer Protocol).</para>
</summary>
<returns>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The e-mail message from a text file.</para>
</returns>
<param name="recipients">
<attribution license="cc4" from="Microsoft" modified="false" />A comma-separated list of message recipients.</param>
<param name="replacements">
<attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Collections.IDictionary" /> containing a list of strings and their replacement strings.</param>
<param name="owner">
<attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Web.UI.Control" /> that owns this <see cref="T:System.Web.UI.WebControls.MailDefinition" />.</param>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="CreateMailMessage">
<MemberSignature Language="C#" Value="public System.Net.Mail.MailMessage CreateMailMessage (string recipients, System.Collections.IDictionary replacements, string body, System.Web.UI.Control owner);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Net.Mail.MailMessage</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="recipients" Type="System.String" />
<Parameter Name="replacements" Type="System.Collections.IDictionary" />
<Parameter Name="body" Type="System.String" />
<Parameter Name="owner" Type="System.Web.UI.Control" />
</Parameters>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="M:System.Web.UI.WebControls.MailDefinition.CreateMailMessage(System.String,System.Collections.IDictionary,System.Web.UI.Control)" /> method creates a new <see cref="T:System.Net.Mail.MailMessage" /> object that can be sent with the <see cref="M:System.Net.Mail.SmtpClient.Send(System.String,System.String,System.String,System.String)" /> method.</para>
<para>The <paramref name="recipients" /> parameter contains a comma-separated list of recipients of the e-mail message. If the <paramref name="recipients" /> parameter contains an improperly formatted Internet e-mail address, the <see cref="M:System.Net.Mail.SmtpClient.Send(System.String,System.String,System.String,System.String)" /> method throws an <see cref="T:System.Web.HttpException" /> exception and the e-mail message is not sent.</para>
<para>The <paramref name="replacements" /> parameter is an <see cref="T:System.Collections.IDictionary" /> instance that contains a list of strings to substitute. Strings are replaced in the order in which they were added to the <see cref="T:System.Collections.IDictionary" /> collection, and they can overwrite earlier replacements.</para>
<para>The <paramref name="body" /> parameter contains the text of the e-mail message. </para>
<para>The <paramref name="owner" /> parameter indicates which control is the parent of the <see cref="T:System.Web.UI.WebControls.MailDefinition" /> control. It determines which directory to search for the text file specified in the <see cref="P:System.Web.UI.WebControls.MailDefinition.BodyFileName" /> property.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Creates an e-mail message with replacements from a text file to send by means of SMTP (Simple Mail Transfer Protocol).</para>
</summary>
<returns>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The e-mail message with replacements from a text file.</para>
</returns>
<param name="recipients">
<attribution license="cc4" from="Microsoft" modified="false" />The comma-separated list of recipients.</param>
<param name="replacements">
<attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Collections.IDictionary" /> containing a list of strings and their replacement strings.</param>
<param name="body">
<attribution license="cc4" from="Microsoft" modified="false" />The text of the e-mail message.</param>
<param name="owner">
<attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Web.UI.Control" /> that owns this <see cref="T:System.Web.UI.WebControls.MailDefinition" />.</param>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="EmbeddedObjects">
<MemberSignature Language="C#" Value="public System.Web.UI.WebControls.EmbeddedMailObjectsCollection EmbeddedObjects { get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.NotifyParentProperty(true)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.ComponentModel.DefaultValue("")</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Web.UI.WebControls.EmbeddedMailObjectsCollection</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="T:System.Web.UI.WebControls.EmbeddedMailObject" /> items in the <see cref="T:System.Web.UI.WebControls.EmbeddedMailObjectsCollection" /> collection returned by the <see cref="P:System.Web.UI.WebControls.MailDefinition.EmbeddedObjects" /> property represent items to embed in an e-mail message. These items can include image files such as company logos or other graphics.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets a collection of <see cref="T:System.Web.UI.WebControls.EmbeddedMailObject" /> instances, typically used to embed images in a <see cref="T:System.Web.UI.WebControls.MailDefinition" /> object before sending an e-mail to a user.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="From">
<MemberSignature Language="C#" Value="public string From { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.DefaultValue("")</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.ComponentModel.NotifyParentProperty(true)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Web.UI.WebControls.MailDefinition.From" /> property contains the e-mail address of the sender of the e-mail message. If the <see cref="P:System.Web.UI.WebControls.MailDefinition.From" /> property is left blank, or contains an improperly formed e-mail address, the <see cref="M:System.Net.Mail.SmtpClient.Send(System.String,System.String,System.String,System.String)" /> method throws an <see cref="T:System.Web.HttpException" /> exception and the e-mail message is not sent.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the e-mail address of the message sender.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="IsBodyHtml">
<MemberSignature Language="C#" Value="public bool IsBodyHtml { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.NotifyParentProperty(true)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.ComponentModel.DefaultValue(false)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Use the <see cref="P:System.Web.UI.WebControls.MailDefinition.IsBodyHtml" /> property to specify whether the body of the e-mail message contains plain text or HTML markup.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets a value indicating whether the body of the e-mail is HTML.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="Priority">
<MemberSignature Language="C#" Value="public System.Net.Mail.MailPriority Priority { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.NotifyParentProperty(true)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Net.Mail.MailPriority</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Web.UI.WebControls.MailDefinition.Priority" /> property indicates the relative priority of the e-mail message.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the priority of the e-mail message.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="Subject">
<MemberSignature Language="C#" Value="public string Subject { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.NotifyParentProperty(true)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.ComponentModel.DefaultValue("")</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Web.UI.WebControls.MailDefinition.Subject" /> property is used as the subject line of the e-mail message. It can be left empty.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the subject line of the e-mail message.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="System.Web.UI.IStateManager.IsTrackingViewState">
<MemberSignature Language="C#" Value="bool System.Web.UI.IStateManager.IsTrackingViewState { get; }" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>This member is an explicit interface member implementation. It can be used only when the <see cref="T:System.Web.UI.WebControls.MailDefinition" /> instance is cast to an <see cref="T:System.Web.UI.IStateManager" /> interface.</para>
<block subset="none" type="note">
<para>The <see cref="P:System.Web.UI.WebControls.MailDefinition.BodyFileName" /> and <see cref="P:System.Web.UI.WebControls.EmbeddedMailObject.Path" /> properties are not saved in the <see cref="P:System.Web.UI.Control.ViewState" /> property.</para>
</block>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets a value that indicates whether the server control is saving changes to its view state.</para>
</summary>
</Docs>
</Member>
<Member MemberName="System.Web.UI.IStateManager.LoadViewState">
<MemberSignature Language="C#" Value="void IStateManager.LoadViewState (object state);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="state" Type="System.Object" />
</Parameters>
<Docs>
<param name="state">To be added.</param>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>This member is an explicit interface member implementation. It can be used only when the <see cref="T:System.Web.UI.WebControls.MailDefinition" /> instance is cast to an <see cref="T:System.Web.UI.IStateManager" /> interface.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Restores view-state information from a previous page request that was saved by the <see cref="M:System.Web.UI.IStateManager.SaveViewState" /> method.</para>
</summary>
</Docs>
</Member>
<Member MemberName="System.Web.UI.IStateManager.SaveViewState">
<MemberSignature Language="C#" Value="object IStateManager.SaveViewState ();" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Object</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>This member is an explicit interface member implementation. It can be used only when the <see cref="T:System.Web.UI.WebControls.MailDefinition" /> instance is cast to an <see cref="T:System.Web.UI.IStateManager" /> interface.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Saves any server control view-state changes that have occurred since the time the page was posted back to the server.</para>
</summary>
<returns>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The server control's current view state.</para>
</returns>
</Docs>
</Member>
<Member MemberName="System.Web.UI.IStateManager.TrackViewState">
<MemberSignature Language="C#" Value="void IStateManager.TrackViewState ();" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>This member is an explicit interface member implementation. It can be used only when the <see cref="T:System.Web.UI.WebControls.MailDefinition" /> instance is cast to an <see cref="T:System.Web.UI.IStateManager" /> interface.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Causes tracking of view-state changes to the server control so they can be stored in the server control's <see cref="T:System.Web.UI.StateBag" /> object.</para>
</summary>
</Docs>
</Member>
</Members>
</Type>