Azure blob streaming video - ASP.NET MVC Azure blob streaming video - ASP.NET MVC azure azure

Azure blob streaming video - ASP.NET MVC


I made it working by setting the storage version to latest. This is ridiculous as i thought Microsoft may have covered it in year 2016 but upon investigation i saw DefaultServiceVersion was null.

CloudBlobClient cloudBlobClient = cloudStorageAccount.CreateCloudBlobClient();            var properties = cloudBlobClient.GetServiceProperties();            if (String.IsNullOrEmpty(properties.DefaultServiceVersion))            {                //set the version of storage to latest                properties.DefaultServiceVersion = "2015-04-05";                cloudBlobClient.SetServiceProperties(properties);            }

Thanks to this blog I was able to figure it out. May help someone in future.

Thanks