X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2FTizen.Messaging%2FTizen.Messaging.Email%2FEmailMessage.cs;h=50bb94363bafb1d54d8a047a9d6cd3c9eb5f817e;hb=7cbaf86be67665fbfff7cb37ce145ad9409ba20a;hp=f7756c959a80d0a0bc3421dada92122c70b91100;hpb=b60d5fc9b0fdc923893d7434cba320fd69653e3a;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git diff --git a/src/Tizen.Messaging/Tizen.Messaging.Email/EmailMessage.cs b/src/Tizen.Messaging/Tizen.Messaging.Email/EmailMessage.cs index f7756c9..50bb943 100644 --- a/src/Tizen.Messaging/Tizen.Messaging.Email/EmailMessage.cs +++ b/src/Tizen.Messaging/Tizen.Messaging.Email/EmailMessage.cs @@ -21,7 +21,7 @@ using System.Collections.ObjectModel; namespace Tizen.Messaging.Email { /// - /// The class contains Messaging API to support sending email messages. + /// This class contains the Messaging API to support sending email messages. /// public class EmailMessage : IDisposable { @@ -35,7 +35,7 @@ namespace Tizen.Messaging.Email private ICollection _bcc = new Collection(); /// - /// The constructor + /// The constructor. /// public EmailMessage() { @@ -48,7 +48,7 @@ namespace Tizen.Messaging.Email } /// - /// Subject of the email message + /// The subject of the email message. /// public string Subject { @@ -70,7 +70,7 @@ namespace Tizen.Messaging.Email } /// - /// Body of the email message + /// The body of the email message. /// public string Body { @@ -91,7 +91,7 @@ namespace Tizen.Messaging.Email } /// - /// List of file attachments + /// The list of file attachments. /// public IList Attachments { @@ -102,10 +102,10 @@ namespace Tizen.Messaging.Email } /// - /// Collection of normal email recipients + /// The collection of normal email recipients. /// /// - /// Email address should be in standard format (as described in Internet standards RFC 5321 and RFC 5322). + /// The email address should be in the standard format (as described in the Internet standards RFC 5321 and RFC 5322). /// public ICollection To { @@ -116,10 +116,10 @@ namespace Tizen.Messaging.Email } /// - /// Collection of CC(carbon copy) email recipients + /// The collection of CC (carbon copy) email recipients. /// /// - /// Email address should be in standard format (as described in Internet standards RFC 5321 and RFC 5322). + /// The email address should be in the standard format (as described in the Internet standards RFC 5321 and RFC 5322). /// public ICollection Cc { @@ -130,10 +130,10 @@ namespace Tizen.Messaging.Email } /// - /// Collection of BCC(blind carbon copy) email recipients + /// The collection of BCC (blind carbon copy) email recipients. /// /// - /// Email address should be in standard format (as described in Internet standards RFC 5321 and RFC 5322). + /// The email address should be in the standard format (as described in the Internet standards RFC 5321 and RFC 5322). /// public ICollection Bcc { @@ -157,12 +157,19 @@ namespace Tizen.Messaging.Email } } + /// + /// Releases all resources used by the EmailMessage. + /// public void Dispose() { Dispose(true); GC.SuppressFinalize(this); } + /// + /// Releases all resources used by the EmailMessage. + /// + /// Disposing by User protected virtual void Dispose(bool disposing) { if (_disposed)