await is to interrupt the process flow until the async method completes . then however does not interrupt the process flow. This means that the next instructions will be executed. But it allows you to execute the code when the asynchronous method completes.
Read more