dotNetify
dotNetify copied to clipboard
[Feature] Calling non void method with results
Consider the following method:
public string Hello(string input) {
return "Hello " + input;
}
And then calling it using dispatch
const data = dotnetify.$dispatch({ Hello: "world" });
Data is obviously undefined, could there be a version of $dispatch that returns a promise with the result?
Use case is obviously being able to display loading indicators when fetching information and/or fetching data that does not belong in the usual state of the view model eg. Login with simply a boolean for result.
Thoughts?
Sounds like a good feature to have. Thanks for suggesting it!
Any news on this? This would be a really nice feature.