C# 클래스 Serilog.Events.DictionaryValue

A value represented as a mapping from keys to values.
상속: LogEventPropertyValue
파일 보기 프로젝트 열기: serilog/serilog 1 사용 예제들

공개 메소드들

메소드 설명
DictionaryValue ( LogEventPropertyValue>.IEnumerable elements ) : System

Create a DictionaryValue with the provided elements.

Render ( TextWriter output, string format = null, IFormatProvider formatProvider = null ) : void

Render the value to the output.

메소드 상세

DictionaryValue() 공개 메소드

Create a DictionaryValue with the provided elements.
public DictionaryValue ( LogEventPropertyValue>.IEnumerable elements ) : System
elements LogEventPropertyValue>.IEnumerable The key-value mappings represented in the dictionary.
리턴 System

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