C# Class Serilog.Events.SequenceValue

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

Méthodes publiques

Méthode 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 méthode

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.
Résultat void

SequenceValue() public méthode

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