[NUI] Reduce code duplication - refactor dispose codes (#1010)
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI / src / internal / WebViewPageLoadSignal.cs
1 /*
2  * Copyright(c) 2019 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17
18 namespace Tizen.NUI
19 {
20     internal class WebViewPageLoadSignal : Disposable
21     {
22         private global::System.Runtime.InteropServices.HandleRef swigCPtr;
23
24         internal static global::System.Runtime.InteropServices.HandleRef getCPtr(WebViewPageLoadSignal obj)
25         {
26             return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr;
27         }
28
29         protected override void Dispose(DisposeTypes type)
30         {
31             if (disposed)
32             {
33                 return;
34             }
35
36             //Release your own unmanaged resources here.
37             //You should not access any managed member here except static instance.
38             //because the execution order of Finalizes is non-deterministic.
39
40             if (swigCPtr.Handle != global::System.IntPtr.Zero)
41             {
42                 Interop.WebView.delete_WebViewPageLoadSignal(swigCPtr);
43                 swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
44             }
45
46             base.Dispose(type);
47         }
48
49         public void Connect(System.Delegate func)
50         {
51             System.IntPtr ip = System.Runtime.InteropServices.Marshal.GetFunctionPointerForDelegate(func);
52             {
53                 Interop.WebView.WebViewPageLoadSignal_Connect(swigCPtr, new System.Runtime.InteropServices.HandleRef(this, ip));
54                 if (NDalicPINVOKE.SWIGPendingException.Pending)
55                 {
56                     throw NDalicPINVOKE.SWIGPendingException.Retrieve();
57                 }
58             }
59         }
60
61         public void Disconnect(System.Delegate func)
62         {
63             System.IntPtr ip = System.Runtime.InteropServices.Marshal.GetFunctionPointerForDelegate<System.Delegate>(func);
64             {
65                 Interop.WebView.WebViewPageLoadSignal_Disconnect(swigCPtr, new System.Runtime.InteropServices.HandleRef(this, ip));
66                 if (NDalicPINVOKE.SWIGPendingException.Pending)
67                 {
68                     throw NDalicPINVOKE.SWIGPendingException.Retrieve();
69                 }
70             }
71         }
72
73         public WebViewPageLoadSignal(global::System.IntPtr cPtr)
74         {
75             swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr);
76         }
77     }
78 }