Async WCF call with ChannelFactory and CreateChannel
问题 I work on project where web application hosted on web server calls WCF services hosted on the app server. Proxy for WCF calls is created by ChannelFactory and calls are made via channel, example: (omitting using block) var factory = new ChannelFactory<IUserService>(endpointConfigurationName); var channel = factory.CreateChannel(); var users = channel.GetAllUsers(); If I understand it well call via channel is async and thread on the web server is idle during request and just wait for a