c# - Async/Await WCF client in a PCL -
The project I am working on is using a WCF service on the server side (code in the same project is). I want to extend it by writing a PCL which uses the service and wants to implement the call with the ASC / wait format.
As PCL has not endorsed Async / Waiting since the beginning, I added the BCL. Async package through Nuget for the project. But whenever I try to generate a proxy, Task based async clients can not be selected, i.e. Born Manually adding proxy to PCF also does not seem possible in PCL.
My current view is creating a proxy that is copying the Reef Class and then using the job wrapping the async / await pattern on its own, provided the cover provided by ? How do I manually write the wrapper manually using Ancanc / App Pattern, which will have the same effect without generating many async patterns? Finally I created a proxy and manually for the receipt of async / wait in the client within PSL.
The APM model generated from TaskFactory is wrapped with. I wrote it down.
EDIT: The broken link has been updated.
Comments
Post a Comment