Is there a way to get internal http requests in a Flash, using C#?
Basically I need analyze all http traffic.
Is there a way to get internal http requests in a Flash, using C#?
Basically I need analyze all http traffic.
The normal way to do this is to install a local proxy server such as fiddler specifically for that task.
You can use SharpPcap to do Ethernet packet capture from C# (not a pure managed solution), or use Wireshark. That's for very sophisticated analysis needs - otherwise a proxy is fine, as suggested by Joel Coehoorn.