lauromoura pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=d1e9f8f6d7100d800292a99407a3da212a375b2d

commit d1e9f8f6d7100d800292a99407a3da212a375b2d
Author: Bruno da Silva Belo <brunodasilvab...@gmail.com>
Date:   Mon Oct 14 01:01:10 2019 -0300

    csharp: updating efl_all docs.
    
    Summary: ref T8345
    
    Reviewers: lauromoura, felipealmeida, segfaultxavi, woohyun
    
    Reviewed By: lauromoura
    
    Subscribers: cedric, #reviewers, #committers
    
    Tags: #efl
    
    Maniphest Tasks: T8345
    
    Differential Revision: https://phab.enlightenment.org/D10378
---
 src/bindings/mono/efl_mono/efl_all.cs | 35 ++++++++++++++++++++++++++++++-----
 1 file changed, 30 insertions(+), 5 deletions(-)

diff --git a/src/bindings/mono/efl_mono/efl_all.cs 
b/src/bindings/mono/efl_mono/efl_all.cs
index 1ea57df70d..54385ca0cc 100644
--- a/src/bindings/mono/efl_mono/efl_all.cs
+++ b/src/bindings/mono/efl_mono/efl_all.cs
@@ -40,13 +40,16 @@ static class UnsafeNativeMethods
 }
 
 /// <summary>Wrapper around the initialization functions of all modules.
-///
-/// Since EFL 1.23.
+/// <para>Since EFL 1.23.</para>
 /// </summary>
 public static class All
 {
     private static bool InitializedUi = false;
 
+    /// <summary>
+    ///   If the main loop was initialized.
+    /// <para>Since EFL 1.23.</para>
+    /// </summary>
     public static bool MainLoopInitialized {
         get;
         private set;
@@ -54,6 +57,11 @@ public static class All
 
     internal static readonly object InitLock = new object();
 
+    /// <summary>
+    ///   Initialize the Efl.
+    /// <para>Since EFL 1.23.</para>
+    /// </summary>
+    /// <param name="components">The <see cref="Efl.Csharp.Components" /> that 
initialize the Efl.</param>
     public static void Init(Efl.Csharp.Components components = 
Efl.Csharp.Components.Basic)
     {
         Eina.Config.Init();
@@ -73,7 +81,9 @@ public static class All
         Monitor.Exit(InitLock);
     }
 
-    /// <summary>Shutdowns all EFL subsystems.</summary>
+    /// <summary>Shutdowns all EFL subsystems.
+    /// <para>Since EFL 1.23.</para>
+    /// </summary>
     public static void Shutdown()
     {
         // Try to cleanup everything before actually shutting down.
@@ -113,11 +123,14 @@ namespace Ui
 {
 
 /// <summary>Initialization and shutdown of the UI libraries.
-///
-/// Since EFL 1.23.
+/// <para>Since EFL 1.23.</para>
 /// </summary>
 public static class Config
 {
+    /// <summary>
+    /// Initialize the configuration of Elm.
+    /// <para>Since EFL 1.23.</para>
+    /// </summary>
     public static void Init()
     {
         // TODO Support elm command line arguments
@@ -133,16 +146,28 @@ public static class Config
         Efl.Ui.Win.ExitOnAllWindowsClosed = new Eina.Value(0);
     }
 
+    /// <summary>
+    ///   Shutdown Elm systems.
+    /// <para>Since EFL 1.24.</para>
+    /// </summary>
     public static void Shutdown()
     {
         elm_shutdown();
     }
 
+    /// <summary>
+    ///   Run Elm system.
+    /// <para>Since EFL 1.23.</para>
+    /// </summary>
     public static void Run()
     {
         elm_run();
     }
 
+    /// <summary>
+    ///   Exit Elm.
+    /// <para>Since EFL 1.23.</para>
+    /// </summary>
     public static void Exit()
     {
         elm_exit();

-- 


Reply via email to