[Attach-panel] Release Version
authormoon87.park <moon87.park@samsung.com>
Wed, 19 Jul 2017 07:42:21 +0000 (16:42 +0900)
committermoon87.park <moon87.park@samsung.com>
Wed, 19 Jul 2017 07:42:21 +0000 (16:42 +0900)
Change-Id: If1de99c9c22e7f62c74a0f0c426318835c0e5b83

packaging/csapi-attach-panel.spec
src/Tizen.Applications.AttachPanel/Tizen.Applications.AttachPanel/AttachPanel.cs

index 73b128b..732980a 100755 (executable)
@@ -1,6 +1,6 @@
 Name:       csapi-attach-panel
 Summary:    Tizen attach panel API for C#
-Version:    1.0.1
+Version:    1.0.2
 Release:    1
 Group:      Development/Libraries
 License:    Apache-2.0
index df0415d..cb4a037 100755 (executable)
@@ -24,6 +24,7 @@ namespace Tizen.Applications.AttachPanel
             Interop.AttachPanel.ErrorCode err = Interop.AttachPanel.CreateAttachPanel(conformant, ref candidateAttachPanel);
             checkException(err);
 
+            Tizen.Log.Debug("AttachPanelSharp", "Success to create an AttachPanel Instance");
             _attachPanel = candidateAttachPanel;
 
             if (_eventEventHandler == null)
@@ -137,6 +138,11 @@ namespace Tizen.Applications.AttachPanel
         /// <exception cref="OutOfMemoryException">Thrown when an attempt to allocate memory fails.</exception>
         public void SetExtraData(ContentCategory category, Bundle extraData)
         {
+            if(extraData == null)
+            {
+                checkException(Interop.AttachPanel.ErrorCode.InvalidParameter);
+            }
+
             IntPtr bundle = IntPtr.Zero;
             if (extraData != null)
             {