Table of Contents

Class ExceptionExtensions

Namespace
MonkeyLoader
Assembly
MonkeyLoader.dll

Contains helpful methods for formatting Exceptions when logging.

public static class ExceptionExtensions
Inheritance
ExceptionExtensions
Inherited Members

Methods

Format(Exception)

Formats an Exception.

public static string Format(this Exception ex)

Parameters

ex Exception

The exception to format.

Returns

string

The formatted exception.

Format(Exception, string)

Formats an Exception with a message.

public static string Format(this Exception ex, string message)

Parameters

ex Exception

The exception to format.

message string

The message to prepend.

Returns

string

The formatted message and exception.

LogFormat(Exception)

Creates a delegate that formats an Exception.

public static Func<string> LogFormat(this Exception ex)

Parameters

ex Exception

The exception to format.

Returns

Func<string>

The delegate that creates the formatted exception.

LogFormat(Exception, string)

Creates a delegate that formats an Exception with a message.

public static Func<string> LogFormat(this Exception ex, string message)

Parameters

ex Exception

The exception to format.

message string

The message to prepend.

Returns

Func<string>

The delegate that creates the formatted message and exception.