You have a WebJob object that runs as part of an Azure website.

HOTSPOT
You have a WebJob object that runs as part of an Azure website. The WebJob object uses features from the
Azure SDK for .NET. You use a well-formed but invalid storage key to create the storage account that you pass
into the UploadDataToAzureStorage method.
The WebJob object contains the following code segment. Line numbers are included for reference only.

For each of the following statements, select Yes if the statement is true. Otherwise, select No.

HOTSPOT
You have a WebJob object that runs as part of an Azure website. The WebJob object uses features from the
Azure SDK for .NET. You use a well-formed but invalid storage key to create the storage account that you pass
into the UploadDataToAzureStorage method.
The WebJob object contains the following code segment. Line numbers are included for reference only.

For each of the following statements, select Yes if the statement is true. Otherwise, select No.

Answer:



Leave a Reply 8

Your email address will not be published. Required fields are marked *


J

J

Agree.

H

H

I am not sure that an invalid storage key is a ‘transient’ fault …

H

H

Should be:

No – can’t upload a file with invalid storage key
No – we have not explicitly told the blobClient to use a retry policy!
Yes – it will fail, the storage key is wrong

Al

Al

NO

NO –> There no retry policy for blob fx.: new BlobRequestOptions() { RetryPolicy = new LinearRetry(TimeSpan.FromSeconds(10), 3) }

YES