Click or drag to resize
ExceptionToStringConverterConvert Method
Converts an Exception to a text message that includes the exception's Message as well as the messages from any inner exceptions.

Namespace: Kjs.AppLife.Update.Wpf.Converters
Assembly: Kjs.AppLife.Update.Wpf (in Kjs.AppLife.Update.Wpf.dll) Version: 5.1.0.0 (5.1.0.0)
Syntax
public Object Convert(
	Object value,
	Type targetType,
	Object parameter,
	CultureInfo culture
)

Parameters

value
Type: SystemObject
The Exception to convert.
targetType
Type: SystemType
This parameter is not used.
parameter
Type: SystemObject
This parameter is not used.
culture
Type: System.GlobalizationCultureInfo
This parameter is not used.

Return Value

Type: Object
A text message that includes the message from value as well as the messages from any inner Exceptions, with one message on each line. Each message after the first is indented with 2 additional spaces.

Implements

IValueConverterConvert(Object, Type, Object, CultureInfo)
See Also