1

I am writing a plugin which has controller action Async but when calling that route it is not hitting,

 public async Task<ActionResult> HelloWord() {}

It is registered as a normal route in routeprovider how to achieve this functionality?

1 Answers1

1

No reason not to hit the controller method. It seems it is a get method so you can try /controllername/HelloWord. If it is at your plugin then make sure that your plugin is build successfully and installed.

sina_Islam
  • 1,068
  • 12
  • 19