PeterO.IniSection

PeterO.IniSection

public sealed class IniSection :
    System.Collections.Generic.IEnumerable,
    System.Collections.IEnumerable

Not documented yet.

Member Summary

IniSection Constructor

public IniSection(
    PeterO.IniSection other);

Initializes a new instance of the PeterO.IniSection class.

Parameters:

Exceptions:

IniSection Constructor

public IniSection(
    string name);

Initializes a new instance of the PeterO.IniSection class.

Parameters:

Count

public int Count { get; }

Gets a value not documented yet.

Returns:

A value not documented yet.

Item

public PeterO.IniEntry this[int index] { get; set; }

Not documented yet.

Parameters:

Return Value:

An IniEntry object.

Name

public string Name { get; }

Gets a value not documented yet.

Returns:

A value not documented yet.

Add

public void Add(
    PeterO.IniEntry entry);

Not documented yet.

Parameters:

Add

public void Add(
    PeterO.IniEntry entry,
    PeterO.IniMergeBehavior behavior);

Adds two IniEntry objects.

Parameters:

Exceptions:

AddComment

public void AddComment(
    string comment);

Not documented yet.

Parameters:

AddEntry

public void AddEntry(
    string key,
    string value);

Not documented yet.

Parameters:

AddEntry

public void AddEntry(
    string key,
    string value,
    PeterO.IniMergeBehavior behavior);

Not documented yet.

Parameters:

Exceptions:

Clear

public void Clear();

Not documented yet.

GetValue

public string GetValue(
    string keyName);

Not documented yet.

Parameters:

Return Value:

A text string.

Exceptions:

RemoveEntry

public void RemoveEntry(
    string key);

Not documented yet.

Parameters:

Exceptions:

SetValue

public void SetValue(
    string keyName,
    string value);

Not documented yet.

Parameters:

Exceptions:

ToString

public override string ToString();

Converts this object to a text string.

Return Value:

A text string.

Back to petero-csharp start page.