PatternConverterWriteDictionary Method (TextWriter, ILoggerRepository, IDictionaryEnumerator)Apache log4net™ SDK Documentation
Write an dictionary to a TextWriter

Namespace: log4net.Util
Assembly: log4net (in log4net.dll) Version: 2.0.8.0-.NET 4.0
Syntax

protected static void WriteDictionary(
	TextWriter writer,
	ILoggerRepository repository,
	IDictionaryEnumerator 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.CollectionsIDictionaryEnumerator
the value to write to the writer
Remarks

Writes the IDictionaryEnumerator 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

Reference