C# 클래스 NLogViewer.Configuration.StringToLoggerConfigMap

상속: System.Collections.DictionaryBase
파일 보기 프로젝트 열기: jkowalski/NLogViewer

공개 메소드들

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

Adds an element with the specified key and value to this StringToLoggerConfigMap.

Contains ( String key ) : bool

Determines whether this StringToLoggerConfigMap contains a specific key.

ContainsKey ( String key ) : bool

Determines whether this StringToLoggerConfigMap contains a specific key.

ContainsValue ( LoggerConfig value ) : bool

Determines whether this StringToLoggerConfigMap contains a specific value.

Remove ( String key ) : void

Removes the element with the specified key from this StringToLoggerConfigMap.

StringToLoggerConfigMap ( ) : System

Initializes a new empty instance of the StringToLoggerConfigMap class

this ( String key ) : LoggerConfig

Gets or sets the LoggerConfig associated with the given String

메소드 상세

Add() 공개 메소드

Adds an element with the specified key and value to this StringToLoggerConfigMap.
public Add ( String key, LoggerConfig value ) : void
key String /// The String key of the element to add. ///
value LoggerConfig /// The LoggerConfig value of the element to add. ///
리턴 void

Contains() 공개 메소드

Determines whether this StringToLoggerConfigMap contains a specific key.
public Contains ( String key ) : bool
key String /// The String key to locate in this StringToLoggerConfigMap. ///
리턴 bool

ContainsKey() 공개 메소드

Determines whether this StringToLoggerConfigMap contains a specific key.
public ContainsKey ( String key ) : bool
key String /// The String key to locate in this StringToLoggerConfigMap. ///
리턴 bool

ContainsValue() 공개 메소드

Determines whether this StringToLoggerConfigMap contains a specific value.
public ContainsValue ( LoggerConfig value ) : bool
value LoggerConfig /// The LoggerConfig value to locate in this StringToLoggerConfigMap. ///
리턴 bool

Remove() 공개 메소드

Removes the element with the specified key from this StringToLoggerConfigMap.
public Remove ( String key ) : void
key String /// The String key of the element to remove. ///
리턴 void

StringToLoggerConfigMap() 공개 메소드

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

this() 공개 메소드

Gets or sets the LoggerConfig associated with the given String
public this ( String key ) : LoggerConfig
key String /// The String whose value to get or set. ///
리턴 LoggerConfig