C# Class Serilog.Events.SequenceValue

A value represented as an ordered sequence of values.
Inheritance: LogEventPropertyValue
Show file Open project: serilog/serilog Class Usage Examples

Public Methods

Method Description
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.

Method Details

Render() public method

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.
return void

SequenceValue() public method

Create a SequenceValue with the provided elements.
public SequenceValue ( IEnumerable elements ) : System
elements IEnumerable The elements of the sequence.
return System