Skip to content

Instantly share code, notes, and snippets.

@guntidheerajkumar
Created July 18, 2016 08:26
Show Gist options
  • Save guntidheerajkumar/38317af7bfcedf39707a31fc5bb8cae6 to your computer and use it in GitHub Desktop.
Save guntidheerajkumar/38317af7bfcedf39707a31fc5bb8cae6 to your computer and use it in GitHub Desktop.
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