Fix some apis to be internal 73/128873/2 accepted/tizen/unified/20170512.023911 submit/tizen/20170512.020131
authorchleun.moon <chleun.moon@samsung.com>
Fri, 12 May 2017 01:47:09 +0000 (10:47 +0900)
committerchleun.moon <chleun.moon@samsung.com>
Fri, 12 May 2017 01:55:17 +0000 (10:55 +0900)
Change-Id: Ibc722c7c325576a1e0b55ead132947aef576abd4
Signed-off-by: cheoleun <chleun.moon@samsung.com>
Tizen.Network.Connection/Tizen.Network.Connection/ConnectionManager.cs
packaging/csapi-network-connection.spec

index 881e279..256f352 100755 (executable)
@@ -16,6 +16,7 @@
 
 using System;
 using System.Collections.Generic;
+using System.ComponentModel;
 using System.Linq;
 using System.Text;
 using System.Threading.Tasks;
@@ -29,6 +30,7 @@ namespace Tizen.Network.Connection
     /// <summary>
     /// This class manages the connection handle resources.
     /// </summary>
+    [EditorBrowsable(EditorBrowsableState.Never)]
     public sealed class SafeConnectionHandle : SafeHandle
     {
         internal SafeConnectionHandle(IntPtr handle) : base(handle, true)
@@ -128,6 +130,7 @@ namespace Tizen.Network.Connection
         /// Gets the connection handle.
         /// </summary>
         /// <returns>Instance of SafeConnectionHandle</returns>
+        [EditorBrowsable(EditorBrowsableState.Never)]
         public static SafeConnectionHandle GetConnectionHandle()
         {
             IntPtr handle = ConnectionInternalManager.Instance.GetHandle();
index a497e6d..2898831 100755 (executable)
@@ -1,6 +1,6 @@
 Name:       csapi-network-connection
 Summary:    Tizen Connection API for C#
-Version:    1.0.14
+Version:    1.0.15
 Release:    1
 Group:      Development/Libraries
 License:    Apache-2.0