C# Class NLogViewer.Configuration.LogColumnCollection

Inheritance: System.Collections.CollectionBase
Exibir arquivo Open project: jkowalski/NLogViewer Class Usage Examples

Public Methods

Method Description
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.

Method Details

Add() public method

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. ///
return void

AddRange() public method

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. ///
return void

AddRange() public method

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. ///
return void

Contains() public method

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. ///
return bool

GetEnumerator() public method

Returns an enumerator that can iterate through the elements of this LogColumnCollection.
public GetEnumerator ( ) : LogColumnCollection.Enumerator
return LogColumnCollection.Enumerator

IndexOf() public method

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. ///
return int

Insert() public method

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. ///
return void

LogColumnCollection() public method

Initializes a new empty instance of the LogColumnCollection class.
public LogColumnCollection ( ) : System
return System

LogColumnCollection() public method

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. ///
return System

LogColumnCollection() public method

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. ///
return System

Remove() public method

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. ///
return void

this() public method

Gets or sets the LogColumn at the given index in this LogColumnCollection.
public this ( int index ) : LogColumn
index int
return LogColumn