## How to call an async function inside web service method in c# ##
Here is my sample code and I want to call btndisplayword_Click
from DisplayNextWord
and DisplayNextWord
is async so that won't work
[WebMethod]
public static void DisplayNextWord(int id)
{
///How to call below async function inside webservice Here
}
protected async void btndisplayword_Click(object sender, EventArgs e)
{
}