C# – The underlying connection was closed: An unexpected error occurred on a send
This isn’t an unusual error, you can find a lot of answers on Stack Overflow, for example. For me I was using a simple WebClient client = new WebClient(); With a send like this: Stream data = client.OpenRead(arguments);StreamReader reader = new StreamReader(data_to_send);s = reader.ReadToEnd(); And getting the error in the title. It said that the... » read more