Reuse CloudBlobClient Object
I have these two objects for Azure Blob Storage access and want to use them in ASP.NET MVC application. CloudBlobClient blobClient = storageAccount.CreateCloudBlobClient(); CloudBlobContainer container = blobClient.GetContainerReference("Deesd"); My question is: Can I reuse the same instance of the objects across all the application requests, or should I instantiate a new object in every method? You can reuse instances, just don't access the same instance from multiple threads concurrently because it is not thread safe. UPDATE April 2019 (7yrs later) NOTE: You should always consult the latest