Azure WebJobs SDK に関連するほとんどのサンプルには、次のようなスタートアップ コードがあります。
static void Main()
{
JobHost h = new JobHost();
h.RunAndBlock();
}
JobHost
ただし、次のようにオブジェクトを作成せずに WebJob を開始することもできます。
static void Main()
{
// Do something...
}
どのようなシナリオでJobHost
必要ですか?