以编程方式查询 MSDN?
有没有办法以编程方式查询 MSDN.com?本质上我有一个类名、命名空间或其他标识符,并且想要找到 MSDN 文档页面,最好也传递一个版本(.net 3.5、.net 4.0、Silverlight 等)。
我想我看到了一些 API,但在谷歌上搜索“以编程方式查询 MSDN”不是很有帮助,似乎 MSDN 对于 google 来说是一个不好的术语......
Is there a way to query MSDN.com programmatically? Essentially I have a class name, namespace or other identifier and want to find the MSDN Documentation page, ideally passing in a version as well (.net 3.5, .net 4.0, Silverlight etc.)
I think I saw some API, but googling for "programatically query MSDN" wasn't very helpful, seems like MSDN is a bad term to google for...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
MSDN 提供了发布文档内容的公共服务:
http://services.msdn.microsoft.com/ContentServices/ContentService.asmx
示例用法可以在此处找到。
MSDN provides a public service to publish documentation content:
http://services.msdn.microsoft.com/ContentServices/ContentService.asmx
Example usage can be found here.
查看一些 MSDN 文档。看起来它正在使用这个模板:
http://msdn.microsoft.com/en-us/library/(v=VS_Version).aspx
例如 .Net 上的 HttpContext 4.
VS 版本:
Take a look at some MSDN documentations. Looks like it is using this template:
http://msdn.microsoft.com/en-us/library/<Fully_Qualified_Name>(v=VS_Version).aspx
For example for HttpContext on .Net 4.
VS Versions: