csharp: add documentation of class Efl.Eo.Config in iwrapper
authorJaehyun Cho <jae_hyun.cho@samsung.com>
Fri, 20 Dec 2019 08:44:41 +0000 (09:44 +0100)
committerJongmin Lee <jm105.lee@samsung.com>
Sun, 22 Dec 2019 20:58:35 +0000 (05:58 +0900)
Summary: Description and since efl version of the class Efl.Eo.Config is added.

Reviewers: YOhoho, lauromoura, segfaultxavi

Reviewed By: segfaultxavi

Subscribers: segfaultxavi, cedric, #reviewers, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D10933

src/bindings/mono/eo_mono/iwrapper.cs

index b4f1af9..29a346d 100644 (file)
@@ -920,15 +920,26 @@ internal struct WrappingHandle
     public IntPtr NativeHandle { get; private set; }
 }
 
+/// <summary>
+/// Manage the initialization and cleanup for the Efl object subsystem.
+/// <para>Since EFL 1.24.</para>
+/// </summary>
 public static class Config
 {
-
+    /// <summary>
+    /// Initialize the EFL object subsystem.
+    /// <para>Since EFL 1.24.</para>
+    /// </summary>
     public static void Init()
     {
         Globals.efl_object_init();
         Globals.SetNativeDisposeCallbacks();
     }
 
+    /// <summary>
+    /// Shutdown the EFL object subsystem.
+    /// <para>Since EFL 1.24.</para>
+    /// </summary>
     public static void Shutdown()
     {
         Globals.efl_object_shutdown();