C# Class NLogViewer.Configuration.StringToLoggerConfigMap

Inheritance: System.Collections.DictionaryBase
Afficher le fichier Open project: jkowalski/NLogViewer

Méthodes publiques

Méthode Description
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

Method Details

Add() public méthode

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. ///
Résultat void

Contains() public méthode

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

ContainsKey() public méthode

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

ContainsValue() public méthode

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

Remove() public méthode

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. ///
Résultat void

StringToLoggerConfigMap() public méthode

Initializes a new empty instance of the StringToLoggerConfigMap class
public StringToLoggerConfigMap ( ) : System
Résultat System

this() public méthode

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. ///
Résultat LoggerConfig