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

前端之家收集整理的这篇文章主要介绍了如何从我的C#XML文档注释链接到MSDN /官方文档?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
给一个类的 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>

如何获取System.Threading.Thread.CurrentPrincipal和System.Web.HttpContext.User的引用以链接到框架文档中的相应页面

解决方法

您可以使用href标签链接到MSDN(或任何其他来源),并执行如下操作:
... both the <see href="http://msdn.microsoft.com/en-us/library/system.threading.thread.currentprincipal.aspx">System.Threading.Thread.CurrentPrincipal</see>...
原文链接:https://www.f2er.com/c/113375.html

猜你在找的C&C++相关文章