Show / Hide Table of Contents

Class TomlTableArray

Inheritance
System.Object
TomlObject
TomlTableArray
Inherited Members
TomlObject.Comments
TomlObject.AddComment(TomlComment)
TomlObject.AddComment(String, CommentLocation)
TomlObject.AddComments(IEnumerable<TomlComment>)
TomlObject.ClearComments()
TomlObject.Get<T>()
TomlObject.CopyComments<T>(T, TomlObject)
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Nett
Assembly: Nett.dll
Syntax
public sealed class TomlTableArray : TomlObject

Constructors

| Improve this Doc View Source

TomlTableArray(ITomlRoot, IEnumerable<TomlTable>)

Declaration
public TomlTableArray(ITomlRoot root, IEnumerable<TomlTable> enumerable)
Parameters
Type Name Description
ITomlRoot root
System.Collections.Generic.IEnumerable<TomlTable> enumerable

Properties

| Improve this Doc View Source

Count

Declaration
public int Count { get; }
Property Value
Type Description
System.Int32
| Improve this Doc View Source

Item[Int32]

Declaration
public TomlTable this[int index] { get; }
Parameters
Type Name Description
System.Int32 index
Property Value
Type Description
TomlTable
| Improve this Doc View Source

Items

Declaration
public List<TomlTable> Items { get; }
Property Value
Type Description
System.Collections.Generic.List<TomlTable>
| Improve this Doc View Source

ReadableTypeName

Declaration
public override string ReadableTypeName { get; }
Property Value
Type Description
System.String
Overrides
TomlObject.ReadableTypeName
| Improve this Doc View Source

TomlType

Declaration
public override TomlObjectType TomlType { get; }
Property Value
Type Description
TomlObjectType
Overrides
TomlObject.TomlType

Methods

| Improve this Doc View Source

Add(TomlTable)

Declaration
public void Add(TomlTable table)
Parameters
Type Name Description
TomlTable table
| Improve this Doc View Source

Get(Type)

Declaration
public override object Get(Type t)
Parameters
Type Name Description
System.Type t
Returns
Type Description
System.Object
Overrides
TomlObject.Get(Type)
| Improve this Doc View Source

Last()

Declaration
public TomlTable Last()
Returns
Type Description
TomlTable
| Improve this Doc View Source

ToString()

Declaration
public override string ToString()
Returns
Type Description
System.String
Overrides
System.Object.ToString()
| Improve this Doc View Source

Visit(ITomlObjectVisitor)

Declaration
public override void Visit(ITomlObjectVisitor visitor)
Parameters
Type Name Description
ITomlObjectVisitor visitor
Overrides
TomlObject.Visit(ITomlObjectVisitor)

Extension Methods

TomlObjectFactory.CreateAttached(TomlObject, Boolean)
TomlObjectFactory.CreateAttached(TomlObject, String)
TomlObjectFactory.CreateAttached(TomlObject, Int64)
TomlObjectFactory.CreateAttached(TomlObject, Double)
TomlObjectFactory.CreateAttached(TomlObject, TimeSpan)
TomlObjectFactory.CreateAttached(TomlObject, DateTimeOffset)
TomlObjectFactory.CreateAttached(TomlObject, IEnumerable<Boolean>)
TomlObjectFactory.CreateAttached(TomlObject, IEnumerable<String>)
TomlObjectFactory.CreateAttached(TomlObject, IEnumerable<Int64>)
TomlObjectFactory.CreateAttached(TomlObject, IEnumerable<Int32>)
TomlObjectFactory.CreateAttached(TomlObject, IEnumerable<Double>)
TomlObjectFactory.CreateAttached(TomlObject, IEnumerable<Single>)
TomlObjectFactory.CreateAttached(TomlObject, IEnumerable<TimeSpan>)
TomlObjectFactory.CreateAttached(TomlObject, IEnumerable<DateTime>)
TomlObjectFactory.CreateAttached(TomlObject, IEnumerable<DateTimeOffset>)
TomlObjectFactory.CreateAttached(TomlObject, Object, TomlTable.TableTypes)
TomlObjectFactory.CreateAttached<TValue>(TomlObject, IDictionary<String, TValue>, TomlTable.TableTypes)
TomlObjectFactory.CreateAttached<T>(TomlObject, IEnumerable<T>, TomlTable.TableTypes)
TomlObjectFactory.CreateEmptyAttachedArray(TomlObject)
TomlObjectFactory.CreateEmptyAttachedTableArray(TomlObject)
TomlObjectFactory.CreateEmptyAttachedTable(TomlObject, TomlTable.TableTypes)
  • Improve this Doc
  • View Source
Back to top Generated by DocFX