Multithreading a large number of web requests in c#

前端 未结 4 754
星月不相逢
星月不相逢 2020-12-04 13:24

I have an program where I need to create some large number of folders to an external sharepoint site (external meaning I can\'t use the sharepoint object model). Web request

4条回答
  •  鱼传尺愫
    2020-12-04 14:00

    For this kind of IO intensive tasks, asynchronous programming model is very useful. However, it is a little hard to use in C#.C# also has language level support for async now, you can try the CTP release.

提交回复
热议问题