C# Class NLogViewer.Configuration.StringToLoggerConfigMap

Inheritance: System.Collections.DictionaryBase
Mostrar archivo Open project: jkowalski/NLogViewer

Public Methods

Method 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 method

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. ///
return void

Contains() public method

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

ContainsKey() public method

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

ContainsValue() public method

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

Remove() public method

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. ///
return void

StringToLoggerConfigMap() public method

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

this() public method

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. ///
return LoggerConfig