Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 2.62 KB

BaseDataSectionCollection.md

File metadata and controls

40 lines (31 loc) · 2.62 KB

BaseDataSectionCollection class

Base class that represents a collection of DataSection objects from a DataBlock of a KnownDataBlock.

public abstract class BaseDataSectionCollection : IList<DataSection>

Public Members

name description
Block { get; } Gets a value that represents the DataBlock object to which this collection belongs BaseDataSectionCollection.
Count { get; } Gets the count.
ImplementedSections { get; } Get a list with the implemented sections.
IsReadOnly { get; } Gets a value indicating whether this instance is read only.
Item { get; set; } Gets or sets the DataSection object specified in the index.
Add(…) Adds the specified item.
Clear() Clears this instance.
Contains(…) Determines whether [contains] [the specified item].
CopyTo(…) Copies to.
GetEnumerator() Returns an enumerator that iterates through a collection.
IndexOf(…) Returns the index of the DataSection object within the collection.
Insert(…) Inserts a DataSection object into collection.
Remove(…) Removes the specified item.
RemoveAt(…) Removes the specified DataSection object from the collection.

Protected Members

name description
BaseDataSectionCollection(…) Initializes a new instance of the class BaseDataSectionCollection specifying the untreated block and if it is read-only.
Sections { get; } Gets a value that represents the list of sections.

See Also