C# Класс NLogViewer.Configuration.LogColumnCollection

Наследование: System.Collections.CollectionBase
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
Add ( LogColumn value ) : void

Adds an instance of type LogColumn to the end of this LogColumnCollection.

AddRange ( LogColumn items ) : void

Adds the elements of an array to the end of this LogColumnCollection.

AddRange ( LogColumnCollection items ) : void

Adds the elements of another LogColumnCollection to the end of this LogColumnCollection.

Contains ( LogColumn value ) : bool

Determines whether a specfic LogColumn value is in this LogColumnCollection.

GetEnumerator ( ) : LogColumnCollection.Enumerator

Returns an enumerator that can iterate through the elements of this LogColumnCollection.

IndexOf ( LogColumn value ) : int

Return the zero-based index of the first occurrence of a specific value in this LogColumnCollection

Insert ( int index, LogColumn value ) : void

Inserts an element into the LogColumnCollection at the specified index

LogColumnCollection ( ) : System

Initializes a new empty instance of the LogColumnCollection class.

LogColumnCollection ( LogColumn items ) : System

Initializes a new instance of the LogColumnCollection class, containing elements copied from an array.

LogColumnCollection ( LogColumnCollection items ) : System

Initializes a new instance of the LogColumnCollection class, containing elements copied from another instance of LogColumnCollection

Remove ( LogColumn value ) : void

Removes the first occurrence of a specific LogColumn from this LogColumnCollection.

this ( int index ) : LogColumn

Gets or sets the LogColumn at the given index in this LogColumnCollection.

Описание методов

Add() публичный Метод

Adds an instance of type LogColumn to the end of this LogColumnCollection.
public Add ( LogColumn value ) : void
value LogColumn /// The LogColumn to be added to the end of this LogColumnCollection. ///
Результат void

AddRange() публичный Метод

Adds the elements of an array to the end of this LogColumnCollection.
public AddRange ( LogColumn items ) : void
items LogColumn /// The array whose elements are to be added to the end of this LogColumnCollection. ///
Результат void

AddRange() публичный Метод

Adds the elements of another LogColumnCollection to the end of this LogColumnCollection.
public AddRange ( LogColumnCollection items ) : void
items LogColumnCollection /// The LogColumnCollection whose elements are to be added to the end of this LogColumnCollection. ///
Результат void

Contains() публичный Метод

Determines whether a specfic LogColumn value is in this LogColumnCollection.
public Contains ( LogColumn value ) : bool
value LogColumn /// The LogColumn value to locate in this LogColumnCollection. ///
Результат bool

GetEnumerator() публичный Метод

Returns an enumerator that can iterate through the elements of this LogColumnCollection.
public GetEnumerator ( ) : LogColumnCollection.Enumerator
Результат LogColumnCollection.Enumerator

IndexOf() публичный Метод

Return the zero-based index of the first occurrence of a specific value in this LogColumnCollection
public IndexOf ( LogColumn value ) : int
value LogColumn /// The LogColumn value to locate in the LogColumnCollection. ///
Результат int

Insert() публичный Метод

Inserts an element into the LogColumnCollection at the specified index
public Insert ( int index, LogColumn value ) : void
index int /// The index at which the LogColumn is to be inserted. ///
value LogColumn /// The LogColumn to insert. ///
Результат void

LogColumnCollection() публичный Метод

Initializes a new empty instance of the LogColumnCollection class.
public LogColumnCollection ( ) : System
Результат System

LogColumnCollection() публичный Метод

Initializes a new instance of the LogColumnCollection class, containing elements copied from an array.
public LogColumnCollection ( LogColumn items ) : System
items LogColumn /// The array whose elements are to be added to the new LogColumnCollection. ///
Результат System

LogColumnCollection() публичный Метод

Initializes a new instance of the LogColumnCollection class, containing elements copied from another instance of LogColumnCollection
public LogColumnCollection ( LogColumnCollection items ) : System
items LogColumnCollection /// The LogColumnCollection whose elements are to be added to the new LogColumnCollection. ///
Результат System

Remove() публичный Метод

Removes the first occurrence of a specific LogColumn from this LogColumnCollection.
public Remove ( LogColumn value ) : void
value LogColumn /// The LogColumn value to remove from this LogColumnCollection. ///
Результат void

this() публичный Метод

Gets or sets the LogColumn at the given index in this LogColumnCollection.
public this ( int index ) : LogColumn
index int
Результат LogColumn