How to write a proxy in C#? [closed]

2019-06-11 12:05发布

i want to write a simple proxy. I don't know what a proxy is. Someone please explain and give a simple http proxy code ?

标签: c# proxy
3条回答
Anthone
2楼-- · 2019-06-11 12:24

I recommend the Wikipedia article for a good overview of the proxy pattern. If you're talking about proxy servers then Wikipedia is still your friend - a proxy server is a special case of the pattern.

查看更多
兄弟一词,经得起流年.
3楼-- · 2019-06-11 12:27

Look at the following links
Proxy is a software that is between the client and the server. For example the web browser requests for a web page the requests passes to the proxy then the proxy request the page and sends it back to the web browser.

How to create a simple proxy in C#?
http://msdn.microsoft.com/en-us/library/system.net.sockets.socket_members(v=VS.90).aspx
http://msdn.microsoft.com/en-us/library/system.net.sockets(v=VS.90).aspx

查看更多
狗以群分
4楼-- · 2019-06-11 12:31
登录 后发表回答