Подтвердить что ты не робот

Как я могу ссылаться на MSDN/официальную документацию из моих комментариев документации по С# XML?

Учитывая комментарий 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 для ссылки на соответствующие страницы в документации по фреймворкам?

4b9b3361

Ответ 1

Вы можете использовать тег href для ссылки на MSDN (или любой другой источник, если на то пошло) и сделать что-то вроде этого:

... both the <see href="http://msdn.microsoft.com/en-us/library/system.threading.thread.currentprincipal.aspx">System.Threading.Thread.CurrentPrincipal</see>...