Legacy ASMX webservice - How to use automagically generated async method
问题 In a asmx webservice i use with c# class library project after adding the web reference to the project which exposes the WebMethods inside the service there are multiple method names for example, In my service i have a webmethod named GetCategories but the intellisense also shows GetCategoriesAsync Is this a asynchronous call to the same webmethod? If so how can i invoke this asynchronous method any examples ? 回答1: You can call the method the same as you call the regular method, you should