Hide apis related to RecentApplications
authorinkyun.kil <inkyun.kil@samsung.com>
Fri, 31 Mar 2017 00:21:39 +0000 (09:21 +0900)
committerSangyoon Jang <s89.jang@samsung.com>
Fri, 31 Mar 2017 06:07:23 +0000 (23:07 -0700)
Change-Id: I074db29f98aaaeac5d774a65fbc55f5fcfd05c57
Signed-off-by: inkyun.kil <inkyun.kil@samsung.com>
src/Tizen.Applications.Common/Tizen.Applications/ApplicationManager.cs
src/Tizen.Applications.Common/Tizen.Applications/RecentApplicationControl.cs
src/Tizen.Applications.Common/Tizen.Applications/RecentApplicationInfo.cs

index d134c10..adc70c3 100755 (executable)
@@ -16,6 +16,7 @@
 
 using System;
 using System.Collections.Generic;
+using System.ComponentModel;
 using System.Runtime.InteropServices;
 using System.Threading.Tasks;
 
@@ -423,6 +424,7 @@ namespace Tizen.Applications
         /// </summary>
         /// <returns>Returns a dictionary containing all recent application info.</returns>
         /// <exception cref="InvalidOperationException">Thrown when failed because of invalid operation</exception>
+        [EditorBrowsable(EditorBrowsableState.Never)]
         public static IEnumerable<RecentApplicationInfo> GetRecentApplications()
         {
             Interop.ApplicationManager.ErrorCode err = Interop.ApplicationManager.ErrorCode.None;
index 418cef1..3ff7bb8 100755 (executable)
@@ -16,6 +16,7 @@
 
 using System;
 using System.Collections.Generic;
+using System.ComponentModel;
 using System.Runtime.InteropServices;
 
 namespace Tizen.Applications
@@ -23,6 +24,7 @@ namespace Tizen.Applications
     /// <summary>
     /// This class provides methods and properties to get information of recent application.
     /// </summary>
+    [EditorBrowsable(EditorBrowsableState.Never)]
     public class RecentApplicationControl
     {
         private const string LogTag = "Tizen.Applications";
index 8812e4f..4be2822 100755 (executable)
@@ -15,6 +15,7 @@
  */
 
 using System;
+using System.ComponentModel;
 using System.Runtime.InteropServices;
 
 namespace Tizen.Applications
@@ -22,6 +23,7 @@ namespace Tizen.Applications
     /// <summary>
     /// This class provides methods and properties to get information of recent application.
     /// </summary>
+    [EditorBrowsable(EditorBrowsableState.Never)]
     public class RecentApplicationInfo : ApplicationInfo
     {
         private const string LogTag = "Tizen.Applications";