How to return Task.Result?

I have a node that returns Task, and I have the Task node type set in my settings but I don’t see any option to get the Task.Result.

Task.Result Property (System.Threading.Tasks) | Microsoft Docs

How can I get the result of the task, and not just the task itself, with VS?

I’m fairly sure VS does not support C# async/await since it’s not technically possible with the current reflection based runtime.

VS also doesn’t support any kind of delegates/callbacks unless you custom code a node for it.