Click or drag to resize

LogEntryManagedThreadId Property

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Gets the current thread's managed thread ID.

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

Property Value

Type: Int32
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 managed thread ID to the console.
        System.Console.Out.WriteLine("Thread ID: " + ev.ManagedThreadId);
    }
}
See Also