File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ namespace NLog.Web
99 ///
1010 /// Usage: app.UseMiddleware<NLogBufferingTargetWrapperMiddleware>(); where app is an IApplicationBuilder
1111 /// </summary>
12- /// <seealso href="https://github.com/nlog/nlog /wiki/AspNetBufferingWrapper-target">Documentation on NLog Wiki</seealso>
12+ /// <seealso href="https://github.com/NLog/NLog /wiki/AspNetBufferingWrapper-target">Documentation on NLog Wiki</seealso>
1313 public class NLogBufferingTargetWrapperMiddleware
1414 {
1515 private readonly RequestDelegate _next ;
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ namespace NLog.Web
77 /// <summary>
88 /// IIS Module to allow the <see cref="AspNetBufferingTargetWrapper"/> to function properly
99 /// </summary>
10- /// <seealso href="https://github.com/nlog/nlog /wiki/AspNetBufferingWrapper-target">Documentation on NLog Wiki</seealso>
10+ /// <seealso href="https://github.com/NLog/NLog /wiki/AspNetBufferingWrapper-target">Documentation on NLog Wiki</seealso>
1111 public class NLogBufferingTargetWrapperModule : IHttpModule
1212 {
1313 /// <summary>
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ namespace NLog.Web
77 /// <summary>
88 /// ASP.NET HttpModule that enables NLog to hook BeginRequest and EndRequest events easily.
99 /// </summary>
10- /// <seealso href="https://github.com/nlog/nlog /wiki/AspNetBufferingWrapper-target">Documentation on NLog Wiki</seealso>
10+ /// <seealso href="https://github.com/NLog/NLog /wiki/AspNetBufferingWrapper-target">Documentation on NLog Wiki</seealso>
1111 [ Obsolete ( "Replaced by NLogBufferingTargetWrapperModule for AspNetBufferingWrapper support. Marked obsolete with NLog 6.0" ) ]
1212 public class NLogHttpModule : IHttpModule
1313 {
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ namespace NLog.Web.Targets
66 /// <summary>
77 /// Writes log messages to the ASP.NET trace.
88 /// </summary>
9- /// <seealso href="https://github.com/nlog/nlog /wiki/AspNetTrace-target">Documentation on NLog Wiki</seealso>
9+ /// <seealso href="https://github.com/NLog/NLog /wiki/AspNetTrace-target">Documentation on NLog Wiki</seealso>
1010 /// <remarks>
1111 /// Log entries can then be viewed by navigating to http://server/path/Trace.axd.
1212 /// </remarks>
@@ -49,4 +49,4 @@ protected override void Write(LogEventInfo logEvent)
4949 }
5050 }
5151 }
52- }
52+ }
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ namespace NLog.Web.Targets.Wrappers
1717 /// Buffers log events for the duration of ASP.NET request and sends them down
1818 /// to the wrapped target at the end of a request.
1919 /// </summary>
20- /// <seealso href="https://github.com/nlog/nlog /wiki/AspNetBufferingWrapper-target">Documentation on NLog Wiki</seealso>
20+ /// <seealso href="https://github.com/NLog/NLog /wiki/AspNetBufferingWrapper-target">Documentation on NLog Wiki</seealso>
2121 /// <remarks>
2222 /// <p>
2323 /// Typically this target is used in cooperation with PostFilteringTargetWrapper
@@ -340,4 +340,4 @@ internal static void OnEndRequest(HttpContext context)
340340 }
341341 }
342342 }
343- }
343+ }
You can’t perform that action at this time.
0 commit comments