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

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

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

Метод Описание
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