C# 클래스 NLogViewer.Configuration.LoggerConfigCollection

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

공개 메소드들

메소드 설명
Add ( LoggerConfig value ) : void

Adds an instance of type LoggerConfig to the end of this LoggerConfigCollection.

AddRange ( LoggerConfig items ) : void

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

AddRange ( LoggerConfigCollection items ) : void

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

Contains ( LoggerConfig value ) : bool

Determines whether a specfic LoggerConfig value is in this LoggerConfigCollection.

GetEnumerator ( ) : LoggerConfigCollection.Enumerator

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

IndexOf ( LoggerConfig value ) : int

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

Insert ( int index, LoggerConfig value ) : void

Inserts an element into the LoggerConfigCollection at the specified index

LoggerConfigCollection ( ) : System

Initializes a new empty instance of the LoggerConfigCollection class.

LoggerConfigCollection ( LoggerConfig items ) : System

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

LoggerConfigCollection ( LoggerConfigCollection items ) : System

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

Remove ( LoggerConfig value ) : void

Removes the first occurrence of a specific LoggerConfig from this LoggerConfigCollection.

this ( int index ) : LoggerConfig

Gets or sets the LoggerConfig at the given index in this LoggerConfigCollection.

메소드 상세

Add() 공개 메소드

Adds an instance of type LoggerConfig to the end of this LoggerConfigCollection.
public Add ( LoggerConfig value ) : void
value LoggerConfig /// The LoggerConfig to be added to the end of this LoggerConfigCollection. ///
리턴 void

AddRange() 공개 메소드

Adds the elements of an array to the end of this LoggerConfigCollection.
public AddRange ( LoggerConfig items ) : void
items LoggerConfig /// The array whose elements are to be added to the end of this LoggerConfigCollection. ///
리턴 void

AddRange() 공개 메소드

Adds the elements of another LoggerConfigCollection to the end of this LoggerConfigCollection.
public AddRange ( LoggerConfigCollection items ) : void
items LoggerConfigCollection /// The LoggerConfigCollection whose elements are to be added to the end of this LoggerConfigCollection. ///
리턴 void

Contains() 공개 메소드

Determines whether a specfic LoggerConfig value is in this LoggerConfigCollection.
public Contains ( LoggerConfig value ) : bool
value LoggerConfig /// The LoggerConfig value to locate in this LoggerConfigCollection. ///
리턴 bool

GetEnumerator() 공개 메소드

Returns an enumerator that can iterate through the elements of this LoggerConfigCollection.
public GetEnumerator ( ) : LoggerConfigCollection.Enumerator
리턴 LoggerConfigCollection.Enumerator

IndexOf() 공개 메소드

Return the zero-based index of the first occurrence of a specific value in this LoggerConfigCollection
public IndexOf ( LoggerConfig value ) : int
value LoggerConfig /// The LoggerConfig value to locate in the LoggerConfigCollection. ///
리턴 int

Insert() 공개 메소드

Inserts an element into the LoggerConfigCollection at the specified index
public Insert ( int index, LoggerConfig value ) : void
index int /// The index at which the LoggerConfig is to be inserted. ///
value LoggerConfig /// The LoggerConfig to insert. ///
리턴 void

LoggerConfigCollection() 공개 메소드

Initializes a new empty instance of the LoggerConfigCollection class.
public LoggerConfigCollection ( ) : System
리턴 System

LoggerConfigCollection() 공개 메소드

Initializes a new instance of the LoggerConfigCollection class, containing elements copied from an array.
public LoggerConfigCollection ( LoggerConfig items ) : System
items LoggerConfig /// The array whose elements are to be added to the new LoggerConfigCollection. ///
리턴 System

LoggerConfigCollection() 공개 메소드

Initializes a new instance of the LoggerConfigCollection class, containing elements copied from another instance of LoggerConfigCollection
public LoggerConfigCollection ( LoggerConfigCollection items ) : System
items LoggerConfigCollection /// The LoggerConfigCollection whose elements are to be added to the new LoggerConfigCollection. ///
리턴 System

Remove() 공개 메소드

Removes the first occurrence of a specific LoggerConfig from this LoggerConfigCollection.
public Remove ( LoggerConfig value ) : void
value LoggerConfig /// The LoggerConfig value to remove from this LoggerConfigCollection. ///
리턴 void

this() 공개 메소드

Gets or sets the LoggerConfig at the given index in this LoggerConfigCollection.
public this ( int index ) : LoggerConfig
index int
리턴 LoggerConfig