-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for Async controller methods for WebAPI #42
Comments
The Hyprlinkr only works with ASP.NET Web API. HTH |
Would this work if I only have attribute based routes? I'm not even defining the "DefaultApi" route.
Seems to just hang infinetly while awaiting, deadlock? UPDATE: instead of
I get the actual exception.
|
Hyprlinkr only partially works with attribute-based routes: #30 |
Closing due to inactivity. |
While the following workaround works for MVC,
AsyncController
is not available on WebAPI, is there a workaround for it?Uri actual = linker.GetUriAsync((AsyncController c) => c.Get(id)).Result;
The text was updated successfully, but these errors were encountered: