C#azure:在媒体服务中创建资产时线程中止异常

时间:2015-09-15 07:49:31

标签: c# azure azure-storage azure-media-services

我使用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中运行良好。我需要更新吗?

0 个答案:

没有答案