Writes TOML tokens for use by TomlConverter implementations.
public sealed class TomlWriter
kind:method, kind:property, kind:ctor. Press Esc to clear.TomlWriter(TextWriter, TomlSerializerOptions?)Initializes a new instance of the TomlWriter class.OptionsGets the options instance used by this writer.WriteBooleanValue(Boolean)Writes a boolean value.WriteDateTimeValue(TomlDateTime)Writes a TOML date/time value.WriteEndArray()Writes the end of an array value.WriteEndDocument()Writes the end of a TOML document.WriteEndInlineTable()Writes the end of an inline table value.WriteEndTable()Writes the end of a table value.WriteEndTableArray()Writes the end of an array-of-tables value.WriteFloatValue(Double)Writes a floating point value.WriteIntegerValue(Int64)Writes an integer value.WritePropertyName(String)Writes a property name within the current table context.WriteStartArray()Writes the start of an array value.WriteStartDocument()Writes the start of a TOML document.WriteStartInlineTable()Writes the start of an inline table value.WriteStartTable()Writes the start of a table value.WriteStartTableArray()Writes the start of an array-of-tables value.WriteStringValue(String)Writes a string value.