Using the CCR with ASynchronous WCF Service
问题 I'm learning how to use the CCR (Concurrency and Coordination Runtime) in conjunction with a Asynchronous WCF Web Service. This is the Test WCF Service: public class Service : IService { private Accounts.Manager accountManager = new Accounts.Manager(); public IAsyncResult BeginGetAccount(int id, AsyncCallback callback, object state) { //How Do I Call the CCR Function without blocking a Thread? throw new NotImplementedException(); } public string EndGetAccount(IAsyncResult result) { //How Do I