■ RegistryKey 클래스를 사용해 신뢰할 수 있는 사이트를 등록하는 방법을 보여준다.
▶ RegistryKey 클래스 : 신뢰할 수 있는 사이트 등록하기 예제 (C#)
1 2 3 |
RegisterTrustedSite("icodebroker.tistory.com", "https"); |
▶ RegistryKey 클래스 : 신뢰할 수 있는 사이트 등록하기 (C#)
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 |
using Microsoft.Win32; #region RegisterTrustedSite(siteName, protocol) /// <summary> /// 신뢰할 수 있는 사이트 등록하기 /// </summary> /// <param name="siteName">사이트명</param> /// <param name="protocol">프로토콜 (http 또는 https)</param> public void RegisterTrustedSite(string siteName, string protocol) { const string NAME_FORMAT = @"Software\\Microsoft\\Windows\\CurrentVersion\Internet Settings\\ZoneMap\\Domains\\{0}"; string name = string.Format(NAME_FORMAT, siteName); RegistryKey existringRegistryKey = Registry.CurrentUser.OpenSubKey(name); if(existringRegistryKey == null) { RegistryKey newRegistryKey = Registry.CurrentUser.CreateSubKey(name); newRegistryKey.SetValue(protocol, 0x00000002); } } #endregion |