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 ?
You can call the method the same as you call the regular method, you should also sign up a function to the method completion event so that upon a response you could continue the proccess.
this is an example I found
Example Link