C# WebClient with Timeout to get the HTML of a remote page

Sometimes you just need a simple WebClient to get back the results from an HTTP Post, but you need to set the timeout, this is how to do that. public class TimeoutWebClient : WebClient { public int Timeout { get ; set ; } public TimeoutWebClient() { Timeout... Read the full text.