LogLogException Method (Exception) | |
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Logs an exception.
Namespace:
Telogis.GeoBase.Diagnostics
Assembly:
geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax public static void LogException(
Exception ex
)
Public Shared Sub LogException (
ex As Exception
)
Parameters
- ex
- Type: SystemException
The error that occurred during application execution.
Examples ...
catch (Exception ex)
{
Log.LogException(ex);
}
...
See Also