Category Archives: VB.NET
Call WCF Service Asynchronously
Why would we want to call a WCF Service asynchronously? The biggest reason to move from synchronous to asynchronous is performance. When a synchronous call is made, the current thread locks till the call is completed. It varies by OS … Continue reading