Revert "Change return-type from List to IEnumerable" 35/117535/2 accepted/tizen/common/20170309.174854 accepted/tizen/ivi/20170309.072018 accepted/tizen/mobile/20170309.071815 accepted/tizen/tv/20170309.071921 accepted/tizen/unified/20170309.120810 submit/tizen/20170306.065826 submit/tizen_unified/20170308.100503
authorShinhui Kang <sinikang@samsung.com>
Mon, 6 Mar 2017 09:38:06 +0000 (01:38 -0800)
committersinikang <sinikang@samsung.com>
Mon, 6 Mar 2017 09:49:35 +0000 (18:49 +0900)
This reverts commit 84e7a153e985f3169a57a96bb1d6183ecb4311c4.

Change-Id: If6217d904a07db2fe874985749e72c812bab956a

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

old mode 100644 (file)
new mode 100755 (executable)
index 77b6fc1..7a4c1ea 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();
index a93b281..51f462e 100755 (executable)
@@ -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)
             {
index ed433a6..7c8b239 100755 (executable)
@@ -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)
old mode 100644 (file)
new mode 100755 (executable)