Skip to content

Commit

Permalink
Added Wiki Links to XML docs (#5497)
Browse files Browse the repository at this point in the history
  • Loading branch information
snakefoot authored Mar 31, 2024
1 parent 788b285 commit 2a11efb
Show file tree
Hide file tree
Showing 77 changed files with 303 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ namespace NLog.LayoutRenderers
/// <summary>
/// Used to render the application domain name.
/// </summary>
/// <remarks>
/// <a href="https://github.com/NLog/NLog/wiki/AppDomain-Layout-Renderer">See NLog Wiki</a>
/// </remarks>
/// <seealso href="https://github.com/NLog/NLog/wiki/AppDomain-Layout-Renderer">Documentation on NLog Wiki</seealso>
[LayoutRenderer("appdomain")]
[AppDomainFixedOutput]
[ThreadAgnostic]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,15 +42,15 @@ namespace NLog.LayoutRenderers
using NLog.Internal;

/// <summary>
/// Application setting.
/// Render value for Application setting retrieved from App.config or Web.config file.
/// </summary>
/// <remarks>
/// Use this layout renderer to insert the value of an application setting
/// stored in the application's App.config or Web.config file.
/// </remarks>
/// <code lang="NLog Layout Renderer">
/// ${appsetting:item=mysetting:default=mydefault} - produces "mydefault" if no appsetting
/// </code>
/// <a href="https://github.com/NLog/NLog/wiki/AppSetting-Layout-Renderer">See NLog Wiki</a>
/// </remarks>
/// <seealso href="https://github.com/NLog/NLog/wiki/AppSetting-Layout-Renderer">Documentation on NLog Wiki</seealso>
[LayoutRenderer("appsetting")]
[ThreadAgnostic]
public sealed class AppSettingLayoutRenderer : LayoutRenderer, IStringValueRenderer
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,9 @@ namespace NLog.LayoutRenderers
/// it is recommended to use it in conjunction with the <see cref="NLog.LayoutRenderers.Wrappers.CachedLayoutRendererWrapper"/>.
/// </remarks>
/// <remarks>
/// The entry assembly can't be found in some cases e.g. ASP.NET, unit tests, etc.
/// <a href="https://github.com/NLog/NLog/wiki/AssemblyVersion-Layout-Renderer">See NLog Wiki</a>
/// </remarks>
/// <seealso href="https://github.com/NLog/NLog/wiki/AssemblyVersion-Layout-Renderer">Documentation on NLog Wiki</seealso>
[LayoutRenderer("assembly-version")]
[ThreadAgnostic]
public class AssemblyVersionLayoutRenderer : LayoutRenderer
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,10 @@ namespace NLog.LayoutRenderers
/// <summary>
/// Thread identity information (username).
/// </summary>
/// <remarks>
/// <a href="https://github.com/NLog/NLog/wiki/Environment-User-Layout-Renderer">See NLog Wiki</a>
/// </remarks>
/// <seealso href="https://github.com/NLog/NLog/wiki/Environment-User-Layout-Renderer">Documentation on NLog Wiki</seealso>
[LayoutRenderer("environment-user")]
public class EnvironmentUserLayoutRenderer : LayoutRenderer, IStringValueRenderer
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,10 @@ namespace NLog.LayoutRenderers
/// <summary>
/// The information about the garbage collector.
/// </summary>
/// <remarks>
/// <a href="https://github.com/NLog/NLog/wiki/Gc-Layout-Renderer">See NLog Wiki</a>
/// </remarks>
/// <seealso href="https://github.com/NLog/NLog/wiki/Gc-Layout-Renderer">Documentation on NLog Wiki</seealso>
[LayoutRenderer("gc")]
public class GarbageCollectorInfoLayoutRenderer : LayoutRenderer
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,10 @@ namespace NLog.LayoutRenderers
/// <summary>
/// The identifier of the current process.
/// </summary>
/// <remarks>
/// <a href="https://github.com/NLog/NLog/wiki/ProcessId-Layout-Renderer">See NLog Wiki</a>
/// </remarks>
/// <seealso href="https://github.com/NLog/NLog/wiki/ProcessId-Layout-Renderer">Documentation on NLog Wiki</seealso>
[LayoutRenderer("processid")]
[AppDomainFixedOutput]
[ThreadAgnostic]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@ namespace NLog.LayoutRenderers
/// <summary>
/// The information about the running process.
/// </summary>
/// <remarks>
/// <a href="https://github.com/NLog/NLog/wiki/ProcessInfo-Layout-Renderer">See NLog Wiki</a>
/// </remarks>
/// <seealso href="https://github.com/NLog/NLog/wiki/ProcessInfo-Layout-Renderer">Documentation on NLog Wiki</seealso>
[LayoutRenderer("processinfo")]
public class ProcessInfoLayoutRenderer : LayoutRenderer
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ namespace NLog.LayoutRenderers
/// <summary>
/// The name of the current process.
/// </summary>
/// <remarks>
/// <a href="https://github.com/NLog/NLog/wiki/ProcessName-Layout-Renderer">See NLog Wiki</a>
/// </remarks>
/// <seealso href="https://github.com/NLog/NLog/wiki/ProcessName-Layout-Renderer">Documentation on NLog Wiki</seealso>
[LayoutRenderer("processname")]
[AppDomainFixedOutput]
[ThreadAgnostic]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ namespace NLog.LayoutRenderers
/// <summary>
/// The call site source file name. Full callsite <see cref="CallSiteLayoutRenderer"/>
/// </summary>
/// <remarks>
/// <a href="https://github.com/NLog/NLog/wiki/Callsite-file-name-layout-renderer">See NLog Wiki</a>
/// </remarks>
/// <seealso href="https://github.com/NLog/NLog/wiki/Callsite-file-name-layout-renderer">Documentation on NLog Wiki</seealso>
[LayoutRenderer("callsite-filename")]
[ThreadAgnostic]
public class CallSiteFileNameLayoutRenderer : LayoutRenderer, IUsesStackTrace, IStringValueRenderer
Expand Down
4 changes: 4 additions & 0 deletions src/NLog/LayoutRenderers/CallSite/CallSiteLayoutRenderer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ namespace NLog.LayoutRenderers
/// <summary>
/// The call site (class name, method name and source information).
/// </summary>
/// <remarks>
/// <a href="https://github.com/NLog/NLog/wiki/Callsite-Layout-Renderer">See NLog Wiki</a>
/// </remarks>
/// <seealso href="https://github.com/NLog/NLog/wiki/Callsite-Layout-Renderer">Documentation on NLog Wiki</seealso>
[LayoutRenderer("callsite")]
[ThreadAgnostic]
public class CallSiteLayoutRenderer : LayoutRenderer, IUsesStackTrace
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,10 @@ namespace NLog.LayoutRenderers
/// <summary>
/// The call site source line number. Full callsite <see cref="CallSiteLayoutRenderer"/>
/// </summary>
/// <remarks>
/// <a href="https://github.com/NLog/NLog/wiki/Callsite-line-number-layout-renderer">See NLog Wiki</a>
/// </remarks>
/// <seealso href="https://github.com/NLog/NLog/wiki/Callsite-line-number-layout-renderer">Documentation on NLog Wiki</seealso>
[LayoutRenderer("callsite-linenumber")]
[ThreadAgnostic]
public class CallSiteLineNumberLayoutRenderer : LayoutRenderer, IUsesStackTrace, IRawValue
Expand Down
4 changes: 4 additions & 0 deletions src/NLog/LayoutRenderers/CallSite/StackTraceLayoutRenderer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ namespace NLog.LayoutRenderers
/// <summary>
/// Stack trace renderer.
/// </summary>
/// <remarks>
/// <a href="https://github.com/NLog/NLog/wiki/Stack-Trace-Layout-Renderer">See NLog Wiki</a>
/// </remarks>
/// <seealso href="https://github.com/NLog/NLog/wiki/Stack-Trace-Layout-Renderer">Documentation on NLog Wiki</seealso>
[LayoutRenderer("stacktrace")]
[ThreadAgnostic]
public class StackTraceLayoutRenderer : LayoutRenderer, IUsesStackTrace
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,10 @@ namespace NLog.LayoutRenderers
/// <summary>
/// Log event context data.
/// </summary>
/// <remarks>
/// <a href="https://github.com/NLog/NLog/wiki/All-Event-Properties-Layout-Renderer">See NLog Wiki</a>
/// </remarks>
/// <seealso href="https://github.com/NLog/NLog/wiki/All-Event-Properties-Layout-Renderer">Documentation on NLog Wiki</seealso>
[LayoutRenderer("all-event-properties")]
[ThreadAgnostic]
[ThreadAgnosticImmutable]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ namespace NLog.LayoutRenderers
/// <summary>
/// Log event context data. See <see cref="LogEventInfo.Properties"/>.
/// </summary>
/// <remarks>
/// <a href="https://github.com/NLog/NLog/wiki/EventProperties-Layout-Renderer">See NLog Wiki</a>
/// </remarks>
/// <seealso href="https://github.com/NLog/NLog/wiki/EventProperties-Layout-Renderer">Documentation on NLog Wiki</seealso>
[LayoutRenderer("event-properties")]
[LayoutRenderer("event-property")]
[LayoutRenderer("event-context")]
Expand Down
4 changes: 4 additions & 0 deletions src/NLog/LayoutRenderers/Contexts/GdcLayoutRenderer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ namespace NLog.LayoutRenderers
/// <summary>
/// Render a Global Diagnostics Context item. See <see cref="GlobalDiagnosticsContext"/>
/// </summary>
/// <remarks>
/// <a href="https://github.com/NLog/NLog/wiki/Gdc-Layout-Renderer">See NLog Wiki</a>
/// </remarks>
/// <seealso href="https://github.com/NLog/NLog/wiki/Gdc-Layout-Renderer">Documentation on NLog Wiki</seealso>
[LayoutRenderer("gdc")]
[ThreadAgnostic]
public class GdcLayoutRenderer : LayoutRenderer, IRawValue, IStringValueRenderer
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,12 @@ namespace NLog.LayoutRenderers
using NLog.Config;

/// <summary>
/// Installation parameter (passed to InstallNLogConfig).
/// Lookup parameter value from <see cref="InstallationContext.Parameters"/>
/// </summary>
/// <remarks>
/// <a href="https://github.com/NLog/NLog/wiki/InstallContext-Layout-Renderer">See NLog Wiki</a>
/// </remarks>
/// <seealso href="https://github.com/NLog/NLog/wiki/InstallContext-Layout-Renderer">Documentation on NLog Wiki</seealso>
[LayoutRenderer("install-context")]
public class InstallContextLayoutRenderer : LayoutRenderer
{
Expand Down
4 changes: 4 additions & 0 deletions src/NLog/LayoutRenderers/Contexts/MdcLayoutRenderer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ namespace NLog.LayoutRenderers
/// Obsolete and replaced by <see cref="ScopeContextPropertyLayoutRenderer"/> with NLog v5.
/// Render Mapped Diagnostics Logical (MDC) from <see cref="MappedDiagnosticsContext"/>
/// </summary>
/// <remarks>
/// <a href="https://github.com/NLog/NLog/wiki/Mdc-Layout-Renderer">See NLog Wiki</a>
/// </remarks>
/// <seealso href="https://github.com/NLog/NLog/wiki/Mdc-Layout-Renderer">Documentation on NLog Wiki</seealso>
[LayoutRenderer("mdc")]
[Obsolete("Replaced by ScopeContextPropertyLayoutRenderer ${scopeproperty}. Marked obsolete on NLog 5.0")]
public class MdcLayoutRenderer : LayoutRenderer, IStringValueRenderer
Expand Down
4 changes: 4 additions & 0 deletions src/NLog/LayoutRenderers/Contexts/MdlcLayoutRenderer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ namespace NLog.LayoutRenderers
/// Obsolete and replaced by <see cref="ScopeContextPropertyLayoutRenderer"/> with NLog v5.
/// Render Mapped Diagnostics Logical Context (MDLC) from <see cref="MappedDiagnosticsLogicalContext"/>
/// </summary>
/// <remarks>
/// <a href="https://github.com/NLog/NLog/wiki/Mdlc-Layout-Renderer">See NLog Wiki</a>
/// </remarks>
/// <seealso href="https://github.com/NLog/NLog/wiki/Mdlc-Layout-Renderer">Documentation on NLog Wiki</seealso>
[LayoutRenderer("mdlc")]
[Obsolete("Replaced by ScopeContextPropertyLayoutRenderer ${scopeproperty}. Marked obsolete on NLog 5.0")]
public class MdlcLayoutRenderer : LayoutRenderer, IStringValueRenderer
Expand Down
4 changes: 4 additions & 0 deletions src/NLog/LayoutRenderers/Contexts/NdcLayoutRenderer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,10 @@ namespace NLog.LayoutRenderers
/// Obsolete and replaced by <see cref="ScopeContextNestedStatesLayoutRenderer"/> with NLog v5.
/// Render Nested Diagnostic Context (NDC) from <see cref="NestedDiagnosticsContext"/>
/// </summary>
/// <remarks>
/// <a href="https://github.com/NLog/NLog/wiki/Ndc-Layout-Renderer">See NLog Wiki</a>
/// </remarks>
/// <seealso href="https://github.com/NLog/NLog/wiki/Ndc-Layout-Renderer">Documentation on NLog Wiki</seealso>
[LayoutRenderer("ndc")]
[Obsolete("Replaced by ScopeContextNestedStatesLayoutRenderer ${scopenested}. Marked obsolete on NLog 5.0")]
public class NdcLayoutRenderer : LayoutRenderer
Expand Down
4 changes: 4 additions & 0 deletions src/NLog/LayoutRenderers/Contexts/NdlcLayoutRenderer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,10 @@ namespace NLog.LayoutRenderers
/// Obsolete and replaced by <see cref="ScopeContextNestedStatesLayoutRenderer"/> with NLog v5.
/// Render Nested Diagnostic Context (NDLC) from <see cref="NestedDiagnosticsLogicalContext"/>
/// </summary>
/// <remarks>
/// <a href="https://github.com/NLog/NLog/wiki/Ndlc-Layout-Renderer">See NLog Wiki</a>
/// </remarks>
/// <seealso href="https://github.com/NLog/NLog/wiki/Ndlc-Layout-Renderer">Documentation on NLog Wiki</seealso>
[LayoutRenderer("ndlc")]
[Obsolete("Replaced by ScopeContextNestedStatesLayoutRenderer ${scopenested}. Marked obsolete on NLog 5.0")]
public class NdlcLayoutRenderer : LayoutRenderer
Expand Down
4 changes: 4 additions & 0 deletions src/NLog/LayoutRenderers/Contexts/NdlcTimingLayoutRenderer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,10 @@ namespace NLog.LayoutRenderers
/// Obsolete and replaced by <see cref="ScopeContextTimingLayoutRenderer"/> with NLog v5.
/// Render Nested Diagnostic Context (NDLC) timings from <see cref="NestedDiagnosticsLogicalContext"/>
/// </summary>
/// <remarks>
/// <a href="https://github.com/NLog/NLog/wiki/NdlcTiming-Layout-Renderer">See NLog Wiki</a>
/// </remarks>
/// <seealso href="https://github.com/NLog/NLog/wiki/NdlcTiming-Layout-Renderer">Documentation on NLog Wiki</seealso>
[LayoutRenderer("ndlctiming")]
[Obsolete("Replaced by ScopeContextTimingLayoutRenderer ${scopetiming}. Marked obsolete on NLog 5.0")]
public class NdlcTimingLayoutRenderer : LayoutRenderer
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,10 @@ namespace NLog.LayoutRenderers
/// <summary>
/// Renders the nested states from <see cref="ScopeContext"/> like a callstack
/// </summary>
/// <remarks>
/// <a href="https://github.com/NLog/NLog/wiki/ScopeIndent-Layout-Renderer">See NLog Wiki</a>
/// </remarks>
/// <seealso href="https://github.com/NLog/NLog/wiki/ScopeIndent-Layout-Renderer">Documentation on NLog Wiki</seealso>
[LayoutRenderer("scopeindent")]
public sealed class ScopeContextIndentLayoutRenderer : LayoutRenderer
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,10 @@ namespace NLog.LayoutRenderers
/// <summary>
/// Renders the nested states from <see cref="ScopeContext"/> like a callstack
/// </summary>
/// <remarks>
/// <a href="https://github.com/NLog/NLog/wiki/ScopeNested-Layout-Renderer">See NLog Wiki</a>
/// </remarks>
/// <seealso href="https://github.com/NLog/NLog/wiki/ScopeNested-Layout-Renderer">Documentation on NLog Wiki</seealso>
[LayoutRenderer("scopenested")]
public sealed class ScopeContextNestedStatesLayoutRenderer : LayoutRenderer
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ namespace NLog.LayoutRenderers
/// <summary>
/// Renders specified property-item from <see cref="ScopeContext"/>
/// </summary>
/// <remarks>
/// <a href="https://github.com/NLog/NLog/wiki/ScopeProperty-Layout-Renderer">See NLog Wiki</a>
/// </remarks>
/// <seealso href="https://github.com/NLog/NLog/wiki/ScopeProperty-Layout-Renderer">Documentation on NLog Wiki</seealso>
[LayoutRenderer("scopeproperty")]
public sealed class ScopeContextPropertyLayoutRenderer : LayoutRenderer, IStringValueRenderer
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ namespace NLog.LayoutRenderers
/// <summary>
/// <see cref="ScopeContext"/> Timing Renderer (Async scope)
/// </summary>
/// <remarks>
/// <a href="https://github.com/NLog/NLog/wiki/ScopeTiming-Layout-Renderer">See NLog Wiki</a>
/// </remarks>
/// <seealso href="https://github.com/NLog/NLog/wiki/ScopeTiming-Layout-Renderer">Documentation on NLog Wiki</seealso>
[LayoutRenderer("scopetiming")]
public sealed class ScopeContextTimingLayoutRenderer : LayoutRenderer
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,15 @@ namespace NLog.LayoutRenderers
using System.Diagnostics;
using System.Globalization;
using System.Text;
using NLog.Config;
using NLog.Internal;

/// <summary>
/// A renderer that puts into log a System.Diagnostics trace correlation id.
/// </summary>
/// <remarks>
/// <a href="https://github.com/NLog/NLog/wiki/Trace-Activity-Id-Layout-Renderer">See NLog Wiki</a>
/// </remarks>
/// <seealso href="https://github.com/NLog/NLog/wiki/Trace-Activity-Id-Layout-Renderer">Documentation on NLog Wiki</seealso>
[LayoutRenderer("activityid")]
public class TraceActivityIdLayoutRenderer : LayoutRenderer, IStringValueRenderer
{
Expand Down
4 changes: 4 additions & 0 deletions src/NLog/LayoutRenderers/Counters/CounterLayoutRenderer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,10 @@ namespace NLog.LayoutRenderers
/// <summary>
/// A counter value (increases on each layout rendering).
/// </summary>
/// <remarks>
/// <a href="https://github.com/NLog/NLog/wiki/Counter-Layout-Renderer">See NLog Wiki</a>
/// </remarks>
/// <seealso href="https://github.com/NLog/NLog/wiki/Counter-Layout-Renderer">Documentation on NLog Wiki</seealso>
[LayoutRenderer("counter")]
[ThreadAgnostic]
public class CounterLayoutRenderer : LayoutRenderer, IRawValue
Expand Down
4 changes: 4 additions & 0 deletions src/NLog/LayoutRenderers/Counters/GuidLayoutRenderer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ namespace NLog.LayoutRenderers
/// <summary>
/// Globally-unique identifier (GUID).
/// </summary>
/// <remarks>
/// <a href="https://github.com/NLog/NLog/wiki/Guid-Layout-Renderer">See NLog Wiki</a>
/// </remarks>
/// <seealso href="https://github.com/NLog/NLog/wiki/Guid-Layout-Renderer">Documentation on NLog Wiki</seealso>
[LayoutRenderer("guid")]
[ThreadAgnostic]
public class GuidLayoutRenderer : LayoutRenderer, IRawValue, IStringValueRenderer
Expand Down
4 changes: 4 additions & 0 deletions src/NLog/LayoutRenderers/Counters/SequenceIdLayoutRenderer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,10 @@ namespace NLog.LayoutRenderers
/// <summary>
/// The sequence ID
/// </summary>
/// <remarks>
/// <a href="https://github.com/NLog/NLog/wiki/SequenceId-layout-renderer">See NLog Wiki</a>
/// </remarks>
/// <seealso href="https://github.com/NLog/NLog/wiki/SequenceId-layout-renderer">Documentation on NLog Wiki</seealso>
[LayoutRenderer("sequenceid")]
[ThreadAgnostic]
public class SequenceIdLayoutRenderer : LayoutRenderer, IRawValue
Expand Down
4 changes: 4 additions & 0 deletions src/NLog/LayoutRenderers/DateTime/DateLayoutRenderer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ namespace NLog.LayoutRenderers
/// <summary>
/// Current date and time.
/// </summary>
/// <remarks>
/// <a href="https://github.com/NLog/NLog/wiki/Date-Layout-Renderer">See NLog Wiki</a>
/// </remarks>
/// <seealso href="https://github.com/NLog/NLog/wiki/Date-Layout-Renderer">Documentation on NLog Wiki</seealso>
[LayoutRenderer("date")]
[ThreadAgnostic]
public class DateLayoutRenderer : LayoutRenderer, IRawValue, IStringValueRenderer
Expand Down
4 changes: 4 additions & 0 deletions src/NLog/LayoutRenderers/DateTime/LongDateLayoutRenderer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ namespace NLog.LayoutRenderers
/// <summary>
/// The date and time in a long, sortable format yyyy-MM-dd HH:mm:ss.ffff.
/// </summary>
/// <remarks>
/// <a href="https://github.com/NLog/NLog/wiki/LongDate-Layout-Renderer">See NLog Wiki</a>
/// </remarks>
/// <seealso href="https://github.com/NLog/NLog/wiki/LongDate-Layout-Renderer">Documentation on NLog Wiki</seealso>
[LayoutRenderer("longdate")]
[ThreadAgnostic]
public class LongDateLayoutRenderer : LayoutRenderer, IRawValue
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ namespace NLog.LayoutRenderers
/// <summary>
/// The process time in format HH:mm:ss.mmm.
/// </summary>
/// <remarks>
/// <a href="https://github.com/NLog/NLog/wiki/ProcessTime-Layout-Renderer">See NLog Wiki</a>
/// </remarks>
/// <seealso href="https://github.com/NLog/NLog/wiki/ProcessTime-Layout-Renderer">Documentation on NLog Wiki</seealso>
[LayoutRenderer("processtime")]
[ThreadAgnostic]
public class ProcessTimeLayoutRenderer : LayoutRenderer, IRawValue
Expand Down
4 changes: 4 additions & 0 deletions src/NLog/LayoutRenderers/DateTime/ShortDateLayoutRenderer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ namespace NLog.LayoutRenderers
/// <summary>
/// The short date in a sortable format yyyy-MM-dd.
/// </summary>
/// <remarks>
/// <a href="https://github.com/NLog/NLog/wiki/ShortDate-Layout-Renderer">See NLog Wiki</a>
/// </remarks>
/// <seealso href="https://github.com/NLog/NLog/wiki/ShortDate-Layout-Renderer">Documentation on NLog Wiki</seealso>
[LayoutRenderer("shortdate")]
[ThreadAgnostic]
public class ShortDateLayoutRenderer : LayoutRenderer, IRawValue, IStringValueRenderer
Expand Down
4 changes: 4 additions & 0 deletions src/NLog/LayoutRenderers/DateTime/TicksLayoutRenderer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ namespace NLog.LayoutRenderers
/// <summary>
/// The Ticks value of current date and time.
/// </summary>
/// <remarks>
/// <a href="https://github.com/NLog/NLog/wiki/Ticks-Layout-Renderer">See NLog Wiki</a>
/// </remarks>
/// <seealso href="https://github.com/NLog/NLog/wiki/Ticks-Layout-Renderer">Documentation on NLog Wiki</seealso>
[LayoutRenderer("ticks")]
[ThreadAgnostic]
public class TicksLayoutRenderer : LayoutRenderer, IRawValue
Expand Down
Loading

0 comments on commit 2a11efb

Please sign in to comment.