Alex
Results
1
comments of
Alex
I am using it like this in my code and it works: ```c# var response = await blobClient.DownloadContentAsync(); if (!response.HasValue || response.GetRawResponse().IsError) (....) ``` This is how I mocked: ```c#...