[C#/WPF] WebBrowser 엘리먼트 : 스크립트 오류 억제하기
■ WebBrowser 엘리먼트에서 웹 사이트 조회시 발생하는 스크립트 오류를 억제하는 방법을 보여준다. ▶ IOleServiceProvider.cs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
using System; using System.Runtime.InteropServices; namespace TestProject { /// <summary> /// OLE 서비스 제공자 인터페이스 /// </summary> [ComImport] [Guid("6D5140C1-7436-11CE-8034-00AA006009FA")] [InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] public interface IOleServiceProvider { //////////////////////////////////////////////////////////////////////////////////////////////////// Method #region 서비스 쿼리하기 - QueryService(serviceGUID, interfaceGUID, instance) /// <summary> /// 서비스 쿼리하기 /// </summary> /// <param name="serviceGUID">서비스 GUID</param> /// <param name="interfaceGUID">인터페이스 GUID</param> /// <param name="instance">인스턴스</param> /// <returns>처리 결과</returns> [PreserveSig] int QueryService([In] ref Guid serviceGUID, [In] ref Guid interfaceGUID, [MarshalAs(UnmanagedType.IDispatch)] out object instance); #endregion } } |
▶ WebBrowserHelper.cs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 |
using System; using System.Reflection; using System.Windows.Controls; namespace TestProject { /// <summary> /// 웹 브라우저 헬퍼 /// </summary> public static class WebBrowserHelper { //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Static //////////////////////////////////////////////////////////////////////////////// Public #region 스크립트 에러 억제하기 - SuppressScriptError(webBrowser, suppress) /// <summary> /// 스크립트 에러 억제하기 /// </summary> /// <param name="webBrowser">웹 브라우저</param> /// <param name="suppress">억제 여부</param> public static void SuppressScriptError(WebBrowser webBrowser, bool suppress) { IOleServiceProvider oleServiceProvider = webBrowser.Document as IOleServiceProvider; if(oleServiceProvider != null) { Guid IWebBrowserAppGUID = new Guid("0002DF05-0000-0000-C000-000000000046"); Guid IWebBrowser2GUID = new Guid("D30C1661-CDAF-11d0-8A3E-00C04FC9E26E"); object webBrowserObject; oleServiceProvider.QueryService(ref IWebBrowserAppGUID, ref IWebBrowser2GUID, out webBrowserObject); if(webBrowserObject != null) { webBrowserObject.GetType().InvokeMember ( "Silent", BindingFlags.Instance | BindingFlags.Public | BindingFlags.PutDispProperty, null, webBrowserObject, new object[] { suppress } ); } } } #endregion } } |
▶ MainWindow.xaml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
<Window x:Class="TestProject.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Width="800" Height="600" Title="WebBrowser 엘리먼트 : 스크립트 오류 억제하기" FontFamily="나눔고딕코딩" FontSize="16"> <Border Margin="10" BorderThickness="1" BorderBrush="Black"> <WebBrowser Name="webBrowser" /> </Border> </Window> |
▶