[NUI] Fix build warning[CA1064]
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI / src / public / NativeImageSource.cs
index e58a6be..a68e0bb 100755 (executable)
@@ -1,4 +1,21 @@
+/*
+ * Copyright(c) 2020 Samsung Electronics Co., Ltd.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */
 
+using System;
 using System.ComponentModel;
 using System.Runtime.InteropServices;
 
@@ -22,6 +39,22 @@ namespace Tizen.NUI
             Handle = cPtr;
         }
 
+
+        /// <summary>
+        /// Get URI from native image source.
+        /// </summary>
+        [EditorBrowsable(EditorBrowsableState.Never)]
+        public Uri Uri
+        {
+            get
+            {
+                string uri = "";
+                uri = Interop.NativeImageSource.GenerateUrl(this.swigCPtr.Handle);
+                if (NDalicPINVOKE.SWIGPendingException.Pending) throw new InvalidOperationException("FATAL: get Exception", NDalicPINVOKE.SWIGPendingException.Retrieve());
+                return new Uri(uri);
+            }
+        }
+
         [EditorBrowsable(EditorBrowsableState.Never)]
         protected override void ReleaseSwigCPtr(System.Runtime.InteropServices.HandleRef swigCPtr)
         {
@@ -60,4 +93,4 @@ namespace Tizen.NUI
             return ret;
         }
     }
-}
\ No newline at end of file
+}