如何从我的C#XML文档注释中链接到MSDN /官方文档?

Dyl*_*tie 10 msdn ndoc xml-documentation

给出类似于这样的类的XML注释:

///<summary>Handles the AuthenticateRequest event in the ASP.NET page request lifecycle to authenticate users.</summary>
///<remarks>
///<para>This module will authenticate users based on cookies, form posts, or an impersonation request from the  admin system.</para>
///<para>If authentication succeeds, both the <see cref="System.Threading.Thread.CurrentPrincipal" /> and the <see cref="System.Web.HttpContext.User"/> property are set to an instance of <see cref="MyPrincipal"/> representing the authenticated user.</para>
///</remarks>
Run Code Online (Sandbox Code Playgroud)

如何获取对框架文档中相应页面的引用System.Threading.Thread.CurrentPrincipalSystem.Web.HttpContext.User链接?

ren*_*ene 1

基于url,msdn url 备忘单

这两个实验应用了从备忘单中学到的东西

链接到1.1版本的frameworkclass

System.Threading.Thread.CurrentPrincipal

链接到4.0版本的frameworkclass

System.Threading.Thread.CurrentPrincipal