IniSection Class

TG.INI

IniSection Class

This class represents a section of INI.
Inheritance Hierarchy

Namespace:  TG.INI
Assembly:  TG.INI (in TG.INI.dll) Version: 1.2.2.0 (1.2.2.0)
Syntax
public class IniSection : CollectionBase
Public Class IniSection
	Inherits CollectionBase
public ref class IniSection : public CollectionBase
type IniSection =  
    class
        inherit CollectionBase
    end

The IniSection type exposes the following members.

Constructors
  NameDescription
Public methodIniSection
Initializes a new IniSection with the provided name.
Top
Properties
  NameDescription
Public propertyCapacity (Inherited from CollectionBase.)
Public propertyCount (Inherited from CollectionBase.)
Protected propertyInnerList (Inherited from CollectionBase.)
Public propertyItemInt32
Gets the IniEntry at the given index within the collection.
Public propertyItemString
Gets an IniKeyValue with a matching key value.
Protected propertyList (Inherited from CollectionBase.)
Public propertyName
Gets or Sets the section name.
Public propertyParentDocument
Gets the parent IniDocument.
Top
Methods
  NameDescription
Public methodAdd(IniEntry)
Adds an IniEntry to the section.
Public methodAdd(IniKeyValue)
Adds an IniKeyValue to this section.
Public methodAddComment
Initialize a new instance of IniComment and add it to the section.
Public methodAddKeyValue(String, String)
Adds a new key/value entry to the section.
Public methodAddKeyValue(String, String, Boolean, Boolean)
Adds a new key/value entry to the section.
Public methodClear (Inherited from CollectionBase.)
Public methodContainsKey
Checks if a key exists in the section.
Public methodEquals (Inherited from Object.)
Protected methodFinalize (Inherited from Object.)
Public methodFind
Public methodGetEnumerator (Inherited from CollectionBase.)
Public methodGetHashCode (Inherited from Object.)
Public methodGetType (Inherited from Object.)
Protected methodMemberwiseClone (Inherited from Object.)
Protected methodOnClear (Inherited from CollectionBase.)
Protected methodOnClearComplete (Inherited from CollectionBase.)
Protected methodOnInsert (Inherited from CollectionBase.)
Protected methodOnInsertComplete (Inherited from CollectionBase.)
Protected methodOnRemove (Inherited from CollectionBase.)
Protected methodOnRemoveComplete (Inherited from CollectionBase.)
Protected methodOnSet (Inherited from CollectionBase.)
Protected methodOnSetComplete (Inherited from CollectionBase.)
Protected methodOnValidate (Inherited from CollectionBase.)
Public methodRemoveAt (Inherited from CollectionBase.)
Public methodRemoveEntry
Public methodToString
Returns the INI section output.
(Overrides ObjectToString.)
Top
See Also