Safe async methods to know when result is returned?
Hi guys,
Using
webrequest.Enqueue​

to make web request, but I need to know when it's completed. Tried to use

async Task/ await but it says System access is restricted, you are not allowed to use System.Threading.Tasks.Task.
Maybe someone has an example of async requests?
You cannot use async in Oxide plugins. You should pass a callback that will be invoked once the webrequest is completed and a responce received.
You can see an example of a callback in the Chat Translator / Babel Chat plugin.

Is async and await still not supported after Rust multithreaded update? or fast loading functionality...