I am trying to analyze .NET memory dump and state of Task objects on heap. I am using fantastic WinDBg extension MEX. !TaskTriage
shows all Tasks in very nice table. Some of them has value in method column but for most there is null like this:
000001fa33b4e658 | Task<System.Object> | <null> | TASK_STATE_WAITINGFORACTIVATION | <null>
I would like to know in which situations info about method is available and if I can do something in my code to have this information included.