C# 클래스 Serilog.Events.StructureValue

A value represented as a collection of name-value properties.
상속: LogEventPropertyValue
파일 보기 프로젝트 열기: serilog/serilog 1 사용 예제들

공개 메소드들

메소드 설명
Render ( TextWriter output, string format = null, IFormatProvider formatProvider = null ) : void

Render the value to the output.

StructureValue ( IEnumerable properties, string typeTag = null ) : System

Construct a StructureValue with the provided properties.

비공개 메소드들

메소드 설명
Render ( TextWriter output, LogEventProperty property, IFormatProvider formatProvider = null ) : void

메소드 상세

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

StructureValue() 공개 메소드

Construct a StructureValue with the provided properties.
public StructureValue ( IEnumerable properties, string typeTag = null ) : System
properties IEnumerable The properties of the structure.
typeTag string Optionally, a piece of metadata describing the "type" of the /// structure.
리턴 System