Created
July 18, 2016 08:26
-
-
Save guntidheerajkumar/38317af7bfcedf39707a31fc5bb8cae6 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
public HomeController(IHostingEnvironment env) | |
{ | |
storageCredentials = new StorageCredentials("account-name", "keyvalue"); | |
cloudStorage = new CloudStorageAccount(storageCredentials, true); | |
cloudBlob = cloudStorage.CreateCloudBlobClient(); | |
cloudblobcontainer = cloudBlob.GetContainerReference("movies"); | |
this.hostingEnv = env; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment