I've started to read Hangfire documentation, and found nothing about task limitations.
As declared, tasks (or jobs) are stored somewhere.
Since they are just delegates, the only thing could be stored, as far as I understand, is a delegate "body" (IL?). But there could be closures, that provides some context for the task, e.g., some external services, that can require to load extra assemblies to run their code, etc.
How Hangfire deals with this?
Can task contain any instructions in its body, or there are any limitations?