[Multimedia] Added descriptions for MediaView class.
authorcoderhyme <jhyo.kim@samsung.com>
Wed, 2 Aug 2017 04:19:53 +0000 (13:19 +0900)
committercoderhyme <jhyo.kim@samsung.com>
Wed, 2 Aug 2017 04:19:53 +0000 (13:19 +0900)
Additionally, fixed a syntax error of comment of Size structure.

Change-Id: I94d00e084af178077fcded28496e086f0c4715c7
Signed-off-by: coderhyme <jhyo.kim@samsung.com>
src/Tizen.Multimedia/Common/Size.cs
src/Tizen.Multimedia/MediaView/MediaView.cs

index d504f76..6c16b11 100644 (file)
@@ -20,7 +20,7 @@ namespace Tizen.Multimedia
 {
     /// <summary>
     /// Represents a size in 2D space.
-    /// <summary>
+    /// </summary>
     public struct Size
     {
         /// <summary>
index 0e3d4a8..41d351a 100755 (executable)
@@ -6,8 +6,22 @@ namespace Tizen.Multimedia
     /// <summary>
     /// The MediaView class allows application developers to display the video output on screen.
     /// </summary>
+    /// <remarks>
+    /// This view should not be instantiated directly.\n
+    /// Use <see cref="Tizen.Xamarin.Forms.Extension.MediaView"/> to create the view.
+    /// </remarks>
+    /// <example>
+    /// <code>
+    /// Tizen.Xamarin.Forms.Extension.MediaView mediaView = ...
+    /// ...
+    /// var display = new Display((Tizen.Multimedia.MediaView)MediaView.NativeView);
+    /// </code>
+    /// </example>
     public class MediaView : EvasObject
     {
+        /// <summary>
+        /// This constructor is used by the infrastructure and is not intended to be used directly from application code.
+        /// </summary>
         public MediaView(EvasObject parent) : base(parent)
         {
         }