/
aprogrammer
/
serilog
Обзор
Документация
Войти
/
aprogrammer
/
serilog
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
src/Serilog/Events/DictionaryValue.cs
65 строк
2 KB
Ivan Maximov
Add space settings (#1885)
28 мар 2023, 03:50
Не верифицирован
28 мар 2023, 03:50
f72a7a3
Код
Авторство
О чём код?
// Copyright 2013-2015 Serilog Contributors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. namespace Serilog.Events; /// <summary> /// A value represented as a mapping from keys to values. /// </summary> public class DictionaryValue : LogEventPropertyValue { /// <summary> /// Create a <see cref="DictionaryValue"/> with the provided <paramref name="elements"/>. /// </summary> /// <param name="elements">The key-value mappings represented in the dictionary.</param> /// <exception cref="ArgumentNullException">When <paramref name="elements"/> is <code>null</code></exception> public DictionaryValue(IEnumerable<KeyValuePair<ScalarValue, LogEventPropertyValue>> elements) { Guard.AgainstNull(elements); Elements = elements.ToDictionary(kvp => kvp.Key, kvp => kvp.Value); } /// <summary> /// The dictionary mapping. /// </summary> public IReadOnlyDictionary<ScalarValue, LogEventPropertyValue> Elements { get; } /// <summary> /// Render the value to the output. /// </summary> /// <param name="output">The output.</param> /// <param name="format">A format string applied to the value, or null.</param> /// <param name="formatProvider">A format provider to apply to the value, or null to use the default.</param> /// <seealso cref="LogEventPropertyValue.ToString(string, IFormatProvider)"/>. /// <exception cref="ArgumentNullException">When <paramref name="output"/> is <code>null</code></exception> public override void Render(TextWriter output, string? format = null, IFormatProvider? formatProvider = null) { Guard.AgainstNull(output); output.Write('['); var delim = "("; foreach (var kvp in Elements) { output.Write(delim); delim = ", ("; kvp.Key.Render(output, null, formatProvider); output.Write(": "); kvp.Value.Render(output, null, formatProvider); output.Write(')'); } output.Write(']'); } }