Monthly Archives: October 2014

[C#]Convert.ChangeType Invalid cast from ‘System.String’ to ‘System.Guid’解决方法

好像是第三次在写代码的时候遇到这个坑了,在利用反射调用Convert.ChangeType进行类型推算自动转换的时候,总是无法完成string到guid的转换,并且报错

An exception of type 'System.InvalidCastException' occurred in mscorlib.dll but was not handled in user code
Additional information: Invalid cast from 'System.String' to 'System.Guid'.

解决方法便是对Guid的类型对一个单独的处理,通过Guid.Parse,对于其他类型,继续使用Convert.ChangeType Continue reading

Azure Media Services Explorer连接中国版Azure

有做过Azure Media Service开发朋友一定有这样的体会:Azure的管理门户里对Media Service的管理能力太弱了,很多常见的基本操作都需要通过API才能完成。Azure Media Service Explorer便是针对Azure管理门户Media Service种种限制的一个增强工具,让管理人员很容易的就能完成常见的media service任务,比如上传asset,视频转码,对视频语音识别生成字幕。官方下载地址在这里,详细的介绍可以看微软Azure官方博客的这篇博文

现在问题来了,如果用Azure Media Services Explorers Tool连接到中国区Azure,来管理在中国区Azure里建的账号呢?其实Azure Media Services Explorers Tool已经考虑到这点了,只是没有文档告诉大家应该怎么做,下面便是具体教程:

Continue reading