Skip to content

Instantly share code, notes, and snippets.

@unter
Created March 9, 2019 21:09
Show Gist options
  • Save unter/20755d529ddcc945b5fa292d0a9452b1 to your computer and use it in GitHub Desktop.
Save unter/20755d529ddcc945b5fa292d0a9452b1 to your computer and use it in GitHub Desktop.
AccessCondition accessCondition = new AccessCondition();
BlobRequestOptions blobRequestOptions = new BlobRequestOptions()
{
RetryPolicy = new LinearRetry(new TimeSpan(0, 0, 3), 3),
};
OperationContext operationContext = new OperationContext();
using (Stream blobStream = blob.OpenWrite(accessCondition, blobRequestOptions, operationContext))
{
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment