C# 클래스 NLogViewer.Configuration.LogColumnCollection

상속: System.Collections.CollectionBase
파일 보기 프로젝트 열기: jkowalski/NLogViewer 1 사용 예제들

공개 메소드들

메소드 설명
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