Release 4.0.0-preview1-00267
[platform/core/csapi/tizenfx.git] / src / ElmSharp / ElmSharp / EvasObjectEvent.cs
old mode 100644 (file)
new mode 100755 (executable)
index 6799be3..eb08d77
@@ -27,6 +27,9 @@ namespace ElmSharp
     /// </summary>
     public interface IInvalidatable : IDisposable
     {
+        /// <summary>
+        /// Make current instance invalidate
+        /// </summary>
         void MakeInvalidate();
     }
 
@@ -248,6 +251,13 @@ namespace ElmSharp
         {
         }
 
+        /// <summary>
+        /// Creates and initializes a new instance of the EvasObjectEvent.
+        /// </summary>
+        /// <param name="sender">EvasObject class belong to</param>
+        /// <param name="handle">EvasObject handle</param>
+        /// <param name="type">EvasObjectCallbackType</param>
+        /// <param name="parser">SmartEventInfoParser</param>
         [EditorBrowsableAttribute(EditorBrowsableState.Never)]
         public EvasObjectEvent(EvasObject sender, IntPtr handle, EvasObjectCallbackType type, SmartEventInfoParser parser)
         {
@@ -267,6 +277,9 @@ namespace ElmSharp
         {
         }
 
+        /// <summary>
+        /// Destroy the EvasObjectEvent object.
+        /// </summary>
         ~EvasObjectEvent()
         {
             Dispose(false);
@@ -315,6 +328,13 @@ namespace ElmSharp
             }
         }
 
+        /// <summary>
+        /// Releases all resources currently used by this instance.
+        /// </summary>
+        /// <param name="disposing">
+        /// true if managed resources should be disposed
+        /// otherwise, false.
+        /// </param>
         protected virtual void Dispose(bool disposing)
         {
             if (!_disposed)
@@ -336,7 +356,7 @@ namespace ElmSharp
         }
 
         /// <summary>
-        /// Destroy Current Obj
+        /// Destroy current object
         /// </summary>
         public void Dispose()
         {
@@ -374,12 +394,21 @@ namespace ElmSharp
         {
         }
 
+        /// <summary>
+        /// Creates and initializes a new instance of the EvasObjectEvent.
+        /// </summary>
+        /// <param name="sender">EvasObject class belong to</param>
+        /// <param name="handle">EvasObject handle</param>
+        /// <param name="type">EvasObjectCallbackType</param>
         [EditorBrowsableAttribute(EditorBrowsableState.Never)]
         public EvasObjectEvent(EvasObject sender, IntPtr handle, EvasObjectCallbackType type)
         {
             _evasObjectEvent = new EvasObjectEvent<EventArgs>(sender, handle, type, null);
         }
 
+        /// <summary>
+        /// Destroy the EvasObjectEvent object.
+        /// </summary>
         ~EvasObjectEvent()
         {
             Dispose(false);
@@ -414,6 +443,13 @@ namespace ElmSharp
             _handlers?.Invoke(sender, e);
         }
 
+        /// <summary>
+        /// Releases all resources currently used by this instance.
+        /// </summary>
+        /// <param name="disposing">
+        /// true if managed resources should be disposed
+        /// otherwise, false.
+        /// </param>
         protected virtual void Dispose(bool disposing)
         {
             if (!_disposed)
@@ -427,7 +463,7 @@ namespace ElmSharp
         }
 
         /// <summary>
-        /// Destroy Current Obj
+        /// Destroy current object
         /// </summary>
         public void Dispose()
         {