2 * Copyright(c) 2019 Samsung Electronics Co., Ltd.
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
20 internal class WebViewPageLoadErrorSignal : Disposable
24 protected override void ReleaseSwigCPtr(System.Runtime.InteropServices.HandleRef swigCPtr)
26 Interop.WebView.delete_WebViewPageLoadErrorSignal(swigCPtr);
29 public void Connect(System.Delegate func)
31 System.IntPtr ip = System.Runtime.InteropServices.Marshal.GetFunctionPointerForDelegate(func);
33 Interop.WebView.WebViewPageLoadErrorSignal_Connect(swigCPtr, new System.Runtime.InteropServices.HandleRef(this, ip));
34 if (NDalicPINVOKE.SWIGPendingException.Pending)
36 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
41 public void Disconnect(System.Delegate func)
43 System.IntPtr ip = System.Runtime.InteropServices.Marshal.GetFunctionPointerForDelegate<System.Delegate>(func);
45 Interop.WebView.WebViewPageLoadErrorSignal_Disconnect(swigCPtr, new System.Runtime.InteropServices.HandleRef(this, ip));
46 if (NDalicPINVOKE.SWIGPendingException.Pending)
48 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
53 public WebViewPageLoadErrorSignal(global::System.IntPtr cPtr) : base(cPtr, true)