Resubmit to change return-type from List to IEnumerable 42/117542/1 accepted/tizen/common/20170310.122133 accepted/tizen/ivi/20170310.032035 accepted/tizen/mobile/20170310.031849 accepted/tizen/tv/20170310.031910 accepted/tizen/unified/20170310.080737 submit/tizen/20170310.002822 submit/tizen_unified/20170310.011402
authorsinikang <sinikang@samsung.com>
Mon, 6 Mar 2017 10:04:02 +0000 (19:04 +0900)
committersinikang <sinikang@samsung.com>
Mon, 6 Mar 2017 10:04:02 +0000 (19:04 +0900)
Change-Id: I1f1e6a61a71ecd99548318af60577f2f1346a56e

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

old mode 100755 (executable)
new mode 100644 (file)
index 65e1d92..b766fc0
@@ -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.5" />
+      <dependency id="Tizen" version="1.0.6" />
     </dependencies>
   </metadata>
   <files>
index 7a4c1ea..77b6fc1 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 List<CallHandle> GetCallHandleList()
+        public IEnumerable<CallHandle> GetCallHandleList()
         {
             uint count;
             _callList = new IntPtr();
old mode 100755 (executable)
new mode 100644 (file)
index 51f462e..a93b281
@@ -58,7 +58,7 @@ namespace Tizen.Telephony
         /// 1. Operation Not Supported
         /// 2. Operation Failed
         /// </exception>
-        public void SetNotificationId(List<ChangeNotificationEventArgs.Notification> list)
+        public void SetNotificationId(IEnumerable<ChangeNotificationEventArgs.Notification> list)
         {
             try
             {
@@ -85,7 +85,7 @@ namespace Tizen.Telephony
         /// 1. Operation Not Supported
         /// 2. Operation Failed
         /// </exception>
-        public void RemoveNotificationId(List<ChangeNotificationEventArgs.Notification> list)
+        public void RemoveNotificationId(IEnumerable<ChangeNotificationEventArgs.Notification> list)
         {
             foreach (ChangeNotificationEventArgs.Notification n in list)
             {
old mode 100755 (executable)
new mode 100644 (file)
index 7c8b239..ed433a6
@@ -156,7 +156,7 @@ namespace Tizen.Telephony
         /// 2. If the operation is not supported on device
         /// 3. If the Operation Failed
         /// </exception>
-        public static List<SlotHandle> Init()
+        public static IEnumerable<SlotHandle> Init()
         {
             //DeInitialize Previous Handles if present
             if (_isInitialized)
old mode 100755 (executable)
new mode 100644 (file)
index edd0c69..5cd53bf
@@ -1,6 +1,6 @@
 Name:       csapi-telephony
 Summary:    Tizen Telephony API for C#
-Version:    1.0.5
+Version:    1.0.6
 Release:    1
 Group:      Development/Libraries
 License:    Apache-2.0