C# Класс Serilog.Events.SequenceValue

A value represented as an ordered sequence of values.
Наследование: LogEventPropertyValue
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
Render ( TextWriter output, string format = null, IFormatProvider formatProvider = null ) : void

Render the value to the output.

SequenceValue ( IEnumerable elements ) : System

Create a SequenceValue with the provided elements.

Описание методов

Render() публичный Метод

Render the value to the output.
public Render ( TextWriter output, string format = null, IFormatProvider formatProvider = null ) : void
output System.IO.TextWriter The output.
format string A format string applied to the value, or null.
formatProvider IFormatProvider A format provider to apply to the value, or null to use the default.
Результат void

SequenceValue() публичный Метод

Create a SequenceValue with the provided elements.
public SequenceValue ( IEnumerable elements ) : System
elements IEnumerable The elements of the sequence.
Результат System