From: Editor Lionbridge Date: Fri, 11 Aug 2017 14:09:58 +0000 (+0530) Subject: Review mime-type API cs files X-Git-Tag: submit/trunk/20170823.075128~39^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F72%2F144672%2F1;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git Review mime-type API cs files Change-Id: I18119c341de964518d68daff90e2f346132138b9 --- diff --git a/src/Tizen.Content.MimeType/Tizen.Content.MimeType/MimeUtil.cs b/src/Tizen.Content.MimeType/Tizen.Content.MimeType/MimeUtil.cs index d9be14a..98aab3e 100755 --- a/src/Tizen.Content.MimeType/Tizen.Content.MimeType/MimeUtil.cs +++ b/src/Tizen.Content.MimeType/Tizen.Content.MimeType/MimeUtil.cs @@ -23,16 +23,16 @@ using System.Runtime.InteropServices; namespace Tizen.Content.MimeType { /// - /// The MimeUtil API provides functions to map MIME types to file extensions and vice versa. + /// The MimeUtil API provides functions to map the MIME types to file extensions and vice versa. /// - /// Conversions are provided from file extensions to MIME types and from MIME types to file extensions. + /// Conversions are provided from the file extensions to MIME types and from the MIME types to file extensions. public static class MimeUtil { /// /// Gets the MIME type for the given file extension. - /// The MIME type is 'application/octet-stream' if the given file extension is not associated with specific file formats + /// The MIME type is 'application/octet-stream' if the given file extension is not associated with specific file formats. /// - /// The file Extension + /// The file extension. /// /// /// string mimeType = MimeUtil.GetMimeType("png"); @@ -50,11 +50,11 @@ namespace Tizen.Content.MimeType } /// - /// Gets file extensions for the given MIME type. + /// Gets the file extensions for the given MIME type. /// - /// If Successfull, return's the list of file extension strings for the given MIME type. - /// The array of file extension are without the leading dot ('.') - /// The mime type + /// If successful, returns the list of file extension strings for the given MIME type. + /// The array of file extension is without the leading dot ('.'). + /// The MIME type. /// /// /// IEnumerable extColl = MimeUtil.GetFileExtension("video/mpeg");