2011-07-07 12 views
10

Biorąc pod uwagę komentarz XML na klasy tak:Jak mogę utworzyć łącze do MSDN/oficjalnej dokumentacji z moich komentarzy do dokumentacji C# 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> 

Jak mogę dostać odniesień do System.Threading.Thread.CurrentPrincipal i System.Web.HttpContext.User link do odpowiednich stron w dokumentacji ramowej?

+0

Co oprogramowania używasz do przetwarzania dokumentacji XML na stronach realna pomoc? –

+0

Docu - https://github.com/jagregory/docu –

Odpowiedz

2

Można użyć href tag podłączenia się do sieci MSDN (lub jakiegokolwiek innego źródła o to chodzi) i zrobić coś takiego:

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