From 3e1d601a42f5209673313d010ef9f76f956cb7ba Mon Sep 17 00:00:00 2001 From: Julian Verdurmen <304NotModified@users.noreply.github.com> Date: Sun, 14 Feb 2021 18:56:58 +0100 Subject: [PATCH] Update docs, remove arraylist (#4301) --- src/NLog/Targets/MailTarget.cs | 4 ++-- src/NLog/Targets/MemoryTarget.cs | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/NLog/Targets/MailTarget.cs b/src/NLog/Targets/MailTarget.cs index 41a244d9aa..5caa64c601 100644 --- a/src/NLog/Targets/MailTarget.cs +++ b/src/NLog/Targets/MailTarget.cs @@ -336,7 +336,7 @@ internal virtual ISmtpClient CreateSmtpClient() } /// - /// Renders the logging event message and adds it to the internal ArrayList of log messages. + /// Writes async log event to the mail target. /// /// The logging event. protected override void Write(AsyncLogEventInfo logEvent) @@ -359,7 +359,7 @@ protected override void Write(AsyncLogEventInfo[] logEvents) } /// - /// Renders an array logging events. + /// Writes log events to the mail target. /// /// Array of logging events. protected override void Write(IList logEvents) diff --git a/src/NLog/Targets/MemoryTarget.cs b/src/NLog/Targets/MemoryTarget.cs index 9db30f2723..88e1e20731 100644 --- a/src/NLog/Targets/MemoryTarget.cs +++ b/src/NLog/Targets/MemoryTarget.cs @@ -37,7 +37,7 @@ namespace NLog.Targets using System.ComponentModel; /// - /// Writes log messages to an ArrayList in memory for programmatic retrieval. + /// Writes log messages to in memory for programmatic retrieval. /// /// Documentation on NLog Wiki /// @@ -95,7 +95,7 @@ public MemoryTarget(string name) : this() public int MaxLogsCount { get; set; } /// - /// Renders the logging event message and adds it to the internal ArrayList of log messages. + /// Renders the logging event message and adds to /// /// The logging event. protected override void Write(LogEventInfo logEvent)