I have below Method in ASMX
Service :
[WebMethod]
public async Task<DataSet> GetDetailAsync(int id)
{
var result =await _oService.GetDetailAsync(id);
return myService.ToDataSet(result);
}
but The result is :
<TaskOfDataSet/>
how can I solve this ? I've searched but I couldn't find anything similar question or issue .