简体   繁体   中英

Which referenced DLL in my C# project is trying to access internet

I am working on a C# project. One of the referenced DLL in my project is trying to access the internet and I do not know which one.

How can I find out which one ?

Is there a way to monitor which DLL is referencing/using the HTTP services ?

1.Disable your network connection.

2.Start debug your code with Visual Studio. <--- wait for a while then your program may be blocked due to the network disconnection.

3.Click "Break All" button Then the code may stopped at the entrance function of the DLL which is connecting to network ...if you are lucky.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM