Created
March 9, 2019 21:09
-
-
Save unter/20755d529ddcc945b5fa292d0a9452b1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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