You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
519 B
23 lines
519 B
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();
|
|
}
|
|
}
|
|
}
|
|
|