Answers

  1. Web role and worker role.
  2. Web roles run on dedicated virtual machines, which can be debugged remotely using IntelliTrace and allow advanced configuration and debugging with remote desktop and start-up tasks available on the virtual machines.
  3. RoleEntryPoint.
  4. OnStart, Run, and OnStop.
  5. The role will recycle.
  6. Use the WAStorageEmulator.exe status command.
  7. Complete or CompleteAsync.
  8. As the tasks are asynchronous, they are queued onto the thread pool and not called immediately, so the calling method continues and is not blocked. We need to use Task.Wait or Task.WaitAll to block the thread while the tasks(s) complete; otherwise, the role will recycle.
  9. WindowsAzure.Storage and Install-package WindowsAzure.Storage.
  10. Call the CloudQueue.Delete method.
  11. Set the ...

Get Learning Microsoft Azure now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.