DefaultRendererRenderObject Method Apache log4net™ SDK Documentation
Render the object obj to a string

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

public void RenderObject(
	RendererMap rendererMap,
	Object obj,
	TextWriter writer
)

Parameters

rendererMap
Type: log4net.ObjectRendererRendererMap
The map used to lookup renderers
obj
Type: SystemObject
The object to render
writer
Type: System.IOTextWriter
The writer to render to

Implements

IObjectRendererRenderObject(RendererMap, Object, TextWriter)
Remarks

Render the object obj to a string.

The rendererMap parameter is provided to lookup and render other objects. This is very useful where obj contains nested objects of unknown type. The FindAndRender(object) method can be used to render these objects.

The default renderer supports rendering objects to strings as follows:

ValueRendered String
null

"(null)"

Array

For a one dimensional array this is the array type name, an open brace, followed by a comma separated list of the elements (using the appropriate renderer), followed by a close brace.

For example: int[] {1, 2, 3}.

If the array is not one dimensional the Array.ToString() is returned.

IEnumerable, ICollection & IEnumerator

Rendered as an open brace, followed by a comma separated list of the elements (using the appropriate renderer), followed by a close brace.

For example: {a, b, c}.

All collection classes that implement ICollection its subclasses, or generic equivalents all implement the IEnumerable interface.

DictionaryEntry

Rendered as the key, an equals sign ('='), and the value (using the appropriate renderer).

For example: key=value.

other

Object.ToString()

See Also

Reference