Previously I used to use background worker threads for making service calls and to not block UI thread.Currently started using TPL but ideally tasks should be used for CPU intensive tasks ..
So wondering if there is anything wrong with using task facoring for making service calls as there would be many threads which would be sitting idle till the service calls are completed ?
Also as to original question is there any guarantee that a task created will be always be invoked on a thread different from UI thread in a WPF application ?