Hide internal api from API document with EditorBrowsable 05/158905/1 5.0.0-preview1-00365
authorsungwook79.park <sungwook79.park@samsung.com>
Mon, 6 Nov 2017 02:05:01 +0000 (11:05 +0900)
committersungwook79.park <sungwook79.park@samsung.com>
Mon, 6 Nov 2017 02:05:01 +0000 (11:05 +0900)
Change-Id: Id73d3efeebe31f953b3353c428067a49215f9c7b
Signed-off-by: sungwook79.park <sungwook79.park@samsung.com>
src/Tizen.Uix.InputMethod/Tizen.Uix.InputMethod/InputMethodEditor.cs

index bcd453b..0e23e98 100755 (executable)
@@ -18,6 +18,7 @@
 using System;
 using System.Collections.Generic;
 using System.Runtime.InteropServices;
+using System.ComponentModel;
 using static Interop.InputMethod;
 
 namespace Tizen.Uix.InputMethod
@@ -1999,6 +2000,7 @@ namespace Tizen.Uix.InputMethod
         /// 2) Operation Failed
         /// </exception>
         /// <since_tizen> 4 </since_tizen>
+        [EditorBrowsable(EditorBrowsableState.Never)]
         public static void Create()
         {
             ErrorCode error = ImeInitialize();
@@ -2030,6 +2032,7 @@ namespace Tizen.Uix.InputMethod
         /// 2) Operation Failed
         /// </exception>
         /// <since_tizen> 4 </since_tizen>
+        [EditorBrowsable(EditorBrowsableState.Never)]
         public static void Destroy()
         {
             ErrorCode error = ImeFinalize();