18 Ocak 2016 Pazartesi

c# multithread bağlantı

//list of urls you want to run in parallelList<stringURLsList = new List<string>();URLsList.Add("http://blabla.com");URLsList.Add("http://blabla2.com");URLsList.Add("http://blabla3.com");URLsList.Add("http://blabla4.com");URLsList.Add("http://blabla5.com");//..... etc

           
Parallel.ForEach(URLsList, new ParallelOptions() { MaxDegreeOfParallelism },
                             (
urlij) =>
                             {
    
//url = the url of the current thread
    //j = thread number..
    //==========================
    //add your webclient request here...
    //and do other processing etc...
    
});