我使用c#在azure媒体服务中创建资源,并将其链接到存储帐户中的blob。
// Context created successfully
MediaServicesCredentials _cachedCredentials =
new MediaServicesCredentials("MediaserviceName", "Mediaservicekey");
CloudMediaContext _context = new CloudMediaContext(_cachedCredentials);
// When i try to use below code to create an asset,
// it takes long time and finally getting Thread abort exception
IAsset asset = context.Assets.Create(assetName, AssetCreationOptions.None);
可能是什么原因?
编辑: 我在Yosemite OS的Xamarin 5.9.6中使用.NET 4.5。而我刚刚发现相同的代码在Windows OS系统上的Visual Studio中运行良好。我需要更新吗?