I would like to know if there is a reference document that carefully lists all AppCompatActivity overrides that may be declared async.
For instance, I could mark:
protected override void OnCreate(Android.OS.Bundle savedInstanceState)
async like this:
protected override async void OnCreate(Android.OS.Bundle savedInstanceState)
As you can see I'm using async void, not async Task. So Because it is probably the top level async method, it is marked async void.
If there is something out there that goes beyond the scope of AppCompatActivity, that would be a must.