How could I call call WCF Service asychronously from asp.net Web API.
I do not want to use asyc and await keywork with my Web API function.
Is there any other way to implement same solutions.
How could I call call WCF Service asychronously from asp.net Web API.
I do not want to use asyc and await keywork with my Web API function.
Is there any other way to implement same solutions.
when you add the service reference you can enable code generation for Asyncronous operations which will give you BeginInvoke and EndInvoke methods for every method exposed via service so that u can call them asynchronously