Quote Originally Posted by wysota View Post
The class doesn't hold any statistics. Even if you track all the requests and replies manually, you won't get the total size transmitted/received, at least not for ssl connections (you won't have access to the encrypted stream). If you need such data, implement your own network proxy and setup the network access manager to forward all connections though it. Then you'll be able to track each byte that flows through it.
Thanks, but after digging through the documentation available for the proxy classes and their sources, I can't really figure out how to use them in order to count the bytes flowing through. I can't even find any methods that allow any bytes to flow through... Any further help would be very appreciated.