Click or drag to resize

LogEntryException Property

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Gets the type of error that occurred during application execution.

Namespace:  Telogis.GeoBase.Diagnostics
Assembly:  geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax
public Exception Exception { get; }

Property Value

Type: Exception
Examples
C#
class MyLogClass
{
    static ILogger _log;
    static void Main()
    {
        // Use the LogEventHandler to handle every log event.
        Log.LogEvent += new LogEventHandler(Log_LogEvent);
        // Create the log category.
        _log = Log.WithCategory("My Test Category");
        // Create the log type and content.
        _log.Info("Message is {0}", "Hello World");
        Console.ReadKey();
    }
    public static void Log_LogEvent(LogEntry ev)
    {
        // Write out the exception message to the console.
        // Should be null.
        System.Console.Out.WriteLine("Exception: " + ev.Exception);
    }
}
See Also