File tree 5 files changed +9
-9
lines changed
5 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 20
20
namespace log4net . Filter ;
21
21
22
22
/// <summary>
23
- /// Simple filter to match a keyed string in the <see cref="Mdc "/>
23
+ /// Simple filter to match a keyed string in the <see cref="MDC "/>
24
24
/// </summary>
25
25
/// <remarks>
26
26
/// <para>
27
- /// Simple filter to match a keyed string in the <see cref="Mdc "/>
27
+ /// Simple filter to match a keyed string in the <see cref="MDC "/>
28
28
/// </para>
29
29
/// <para>
30
30
/// As the MDC has been replaced with layered properties the
Original file line number Diff line number Diff line change 20
20
namespace log4net . Filter ;
21
21
22
22
/// <summary>
23
- /// Simple filter to match a string in the <see cref="Ndc "/>
23
+ /// Simple filter to match a string in the <see cref="NDC "/>
24
24
/// </summary>
25
25
/// <remarks>
26
26
/// <para>
27
- /// Simple filter to match a string in the <see cref="Ndc "/>
27
+ /// Simple filter to match a string in the <see cref="NDC "/>
28
28
/// </para>
29
29
/// <para>
30
30
/// As the NDC has been replaced with named stacks stored in the
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ namespace log4net;
30
30
/// </para>
31
31
/// </note>
32
32
/// <para>
33
- /// The MDC class is similar to the <see cref="Ndc "/> class except that it is
33
+ /// The MDC class is similar to the <see cref="NDC "/> class except that it is
34
34
/// based on a map instead of a stack. It provides <i>mapped
35
35
/// diagnostic contexts</i>. A <i>Mapped Diagnostic Context</i>, or
36
36
/// MDC in short, is an instrument for distinguishing interleaved log
@@ -45,7 +45,7 @@ namespace log4net;
45
45
/// <author>Nicko Cadell</author>
46
46
/// <author>Gert Driesen</author>
47
47
/*[Obsolete("MDC has been replaced by ThreadContext.Properties")]*/
48
- public static class Mdc
48
+ public static class MDC
49
49
{
50
50
/// <summary>
51
51
/// Gets the context value identified by the <paramref name="key" /> parameter.
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ namespace log4net;
51
51
/// </remarks>
52
52
/// <example>How to push a message into the context
53
53
/// <code lang="C#">
54
- /// using(NDC.Push("my context message"))
54
+ /// using (NDC.Push("my context message"))
55
55
/// {
56
56
/// ... all log calls will have 'my context message' included ...
57
57
///
@@ -62,7 +62,7 @@ namespace log4net;
62
62
/// <author>Nicko Cadell</author>
63
63
/// <author>Gert Driesen</author>
64
64
/*[Obsolete("NDC has been replaced by ThreadContext.Stacks")]*/
65
- public static class Ndc
65
+ public static class NDC
66
66
{
67
67
/// <summary>
68
68
/// Gets the current context depth.
Original file line number Diff line number Diff line change @@ -178,7 +178,7 @@ public IDisposable Push(string? message)
178
178
/// <remarks>
179
179
/// <para>
180
180
/// This property is provided only to support backward compatibility
181
- /// of the <see cref="Ndc "/>. Typically the internal stack should not
181
+ /// of the <see cref="NDC "/>. Typically the internal stack should not
182
182
/// be modified.
183
183
/// </para>
184
184
/// </remarks>
You can’t perform that action at this time.
0 commit comments