Write an dictionary to a TextWriter
Namespace: log4net.Util
Assembly: log4net (in log4net.dll) Version: 2.0.6.0-.NET 4.0
Syntax
protected static void WriteDictionary( TextWriter writer, ILoggerRepository repository, IDictionary value )
Parameters
- writer
- Type: System.IOTextWriter
the writer to write to - repository
- Type: log4net.RepositoryILoggerRepository
a ILoggerRepository to use for object conversion - value
- Type: System.CollectionsIDictionary
the value to write to the writer
Remarks
Writes the IDictionary to a writer in the form:
{key1=value1, key2=value2, key3=value3}
If the ILoggerRepository specified is not null then it is used to render the key and value to text, otherwise the object's ToString method is called.
See Also