Write an dictionary to a 
TextWriter
Namespace: log4net.UtilAssembly: log4net (in log4net.dll) Version: 1.2.14.0 (1.2.14.0)
Syntax
Parameters
- writer
 - Type: 
System.IO TextWriter
the writer to write to 
- repository
 - Type: log4net.Repository ILoggerRepository
a ILoggerRepository to use for object conversion 
- value
 - Type: 
System.Collections IDictionary
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