giancarlogiesa wrote: > Hello, > > is possible with C# / Mono download a file from an HTTP server ? > if yes, how ? WebClient wc = new WebClient(); byte[] content = wc.DownloadData(url); or wc.DownloadFile(url, fileName). Just look at WebClient docs. Robert