using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Proxy { /* * 카테고리: 구조 패턴 * 개요: 클라이언트가 사용을 원하는 객체를 직접 사용하는것이 아니라 * 객체에 대한 대리자(Proxy) 역할을 하는 객체를 두고 이를 통해 사용하는 방식 */ class Program { static void Main(string[] args) { Client.HowToTest("https://phishingsite.com"); Console.ReadKey(); } } }