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
ExceptionThe 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
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
ExceptionThe exception to format.
Returns
LogFormat(Exception, string)
Creates a delegate that formats an Exception with a message.
public static Func<string> LogFormat(this Exception ex, string message)