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)
/// <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)
{