Revert "Resubmit to change return-type from List to IEnumerable"
authorShinhui Kang <sinikang@samsung.com>
Fri, 17 Mar 2017 01:16:17 +0000 (18:16 -0700)
committersinikang <sinikang@samsung.com>
Fri, 17 Mar 2017 01:20:49 +0000 (10:20 +0900)
- This reverts commit 59482855408c6649e1fd0ccc992c3e29ddbd35bb.

- Increase patchlevel to 1.0.7

Change-Id: I5186938791ea000ff9c8ffabc85b1e0071fa2f6f

packaging/csapi-telephony.spec
src/Tizen.Telephony/Tizen.Telephony.nuspec
src/Tizen.Telephony/Tizen.Telephony/Call.cs
src/Tizen.Telephony/Tizen.Telephony/SlotHandle.cs [changed mode: 0644->0755]
src/Tizen.Telephony/Tizen.Telephony/Telephony.cs [changed mode: 0644->0755]

index 5cd53bf1d3e09ca5343e4622211eaa447388a642..cc161a177e4de9233add815d467d396ba16f0dee 100644 (file)
@@ -1,6 +1,6 @@
 Name:       csapi-telephony
 Summary:    Tizen Telephony API for C#
-Version:    1.0.6
+Version:    1.0.7
 Release:    1
 Group:      Development/Libraries
 License:    Apache-2.0
index b766fc042ba021fdd1cb596a1ee7250a27d473a8..7cd8f33160d7f3886c40872a14cc0c2e874cd723 100644 (file)
@@ -11,7 +11,7 @@
     <copyright>© Samsung Electronics Co., Ltd All Rights Reserved</copyright>
     <description>Telephony API for Tizen.Net</description>
     <dependencies>
-      <dependency id="Tizen" version="1.0.6" />
+      <dependency id="Tizen" version="1.0.7" />
     </dependencies>
   </metadata>
   <files>
index 77b6fc1f474e09e1a40b2aec1fe9d7eef5be7767..7a4c1eaee7608d7344a75d2c758eaf5cc075276c 100644 (file)
@@ -91,7 +91,7 @@ namespace Tizen.Telephony
         /// <exception cref="UnauthorizedAccessException">Incase of Privileges are not defined</exception>
         /// <exception cref="NotSupportedException">Incase of Telephony is not supported</exception>>
         /// <exception cref="OutOfMemoryException">Incase of Out of Memory</exception>>
-        public IEnumerable<CallHandle> GetCallHandleList()
+        public List<CallHandle> GetCallHandleList()
         {
             uint count;
             _callList = new IntPtr();
old mode 100644 (file)
new mode 100755 (executable)
index a93b281..51f462e
@@ -58,7 +58,7 @@ namespace Tizen.Telephony
         /// 1. Operation Not Supported
         /// 2. Operation Failed
         /// </exception>
-        public void SetNotificationId(IEnumerable<ChangeNotificationEventArgs.Notification> list)
+        public void SetNotificationId(List<ChangeNotificationEventArgs.Notification> list)
         {
             try
             {
@@ -85,7 +85,7 @@ namespace Tizen.Telephony
         /// 1. Operation Not Supported
         /// 2. Operation Failed
         /// </exception>
-        public void RemoveNotificationId(IEnumerable<ChangeNotificationEventArgs.Notification> list)
+        public void RemoveNotificationId(List<ChangeNotificationEventArgs.Notification> list)
         {
             foreach (ChangeNotificationEventArgs.Notification n in list)
             {
old mode 100644 (file)
new mode 100755 (executable)
index ed433a6..7c8b239
@@ -156,7 +156,7 @@ namespace Tizen.Telephony
         /// 2. If the operation is not supported on device
         /// 3. If the Operation Failed
         /// </exception>
-        public static IEnumerable<SlotHandle> Init()
+        public static List<SlotHandle> Init()
         {
             //DeInitialize Previous Handles if present
             if (_isInitialized)