Reads TOML tokens for use by TomlConverter implementations.
public sealed class TomlReader
kind:method, kind:property, kind:ctor. Press Esc to clear.ColumnGets the current column number (1-based).CurrentSpanGets the optional source span associated with the current token.LineGets the current line number (1-based).OptionsGets the serializer options associated with this reader instance.PropertyNameGets the current property name when TokenType is PropertyName.SourceNameGets the optional source name associated with the TOML payload (for example, a file path).TokenTypeGets the current token type.Create(TextReader, TomlSerializerOptions?)Creates a TOML reader over a text reader.Create(String, TomlSerializerOptions?)Creates a TOML reader over a string payload.CreateException(String)Creates a TomlException with the current source location (when available).GetBoolean()Gets the current boolean value.GetDecimal()Gets the current floating value as decimal.GetDouble()Gets the current floating value.GetInt64()Gets the current integer value.GetRawText()Gets the raw source text represented by the current token.GetString()Gets the current string value.GetTomlDateTime()Gets the current TOML datetime value.PropertyNameEquals(String)Checks whether the current property name matches the expected value, using an ordinal, case-sensitive comparison.Read()Advances the reader to the next token.Skip()Skips the current value.TryGetPropertyNameHash(out UInt64)Attempts to get a stable hash for the current property name without materializing it.