|
ExceptionExtensionsFlatten Method
|
This stuff is still in the planning stages. Any questions or Comments are welcome. [This is preliminary documentation and is subject to change.]
Flattens the specified exception.
Namespace:
Extentions
Assembly:
FurcadiaLib (in FurcadiaLib.dll) Version: 2.19.PreAlpha 59
Syntax public static string Flatten(
this Exception exception
)
<ExtensionAttribute>
Public Shared Function Flatten (
exception As Exception
) As String
Dim exception As Exception
Dim returnValue As String
returnValue = exception.Flatten()
public:
[ExtensionAttribute]
static String^ Flatten(
Exception^ exception
)
[<ExtensionAttribute>]
static member Flatten :
exception : Exception -> string
Parameters
- exception
- Type: SystemException
The exception.
Return Value
Type:
String[Missing <returns> documentation for "M:Extentions.ExceptionExtensions.Flatten(System.Exception)"]
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
Exception. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also