c# Programming Glossary: trace.correlationmanager.activityid
How do Tasks in the Task Parallel Library affect ActivityID? http://stackoverflow.com/questions/4340948/how-do-tasks-in-the-task-parallel-library-affect-activityid new WaitCallback o DoWork static void DoWork try Trace.CorrelationManager.ActivityId Guid.NewGuid The functions below contain tracing which logs.. CallFunction3 catch Exception ex Trace.Write Trace.CorrelationManager.ActivityId ex.ToString Now with the TPL my understanding is that multiple.. Thread.CurrentThread.ManagedThreadId Guid g1 Guid.NewGuid Trace.CorrelationManager.ActivityId g1 Thread.Sleep 3000 Guid g2 Trace.CorrelationManager.ActivityId..
Is CorrelationManager.LogicalOperationStack compatible with Parallel.For, Tasks, Threads, etc http://stackoverflow.com/questions/4729479/is-correlationmanager-logicaloperationstack-compatible-with-parallel-for-tasks affect ActivityID That question asks how Tasks affect Trace.CorrelationManager.ActivityId . @Greg Samson answered his own question with a test program.. Parallel threads and ThreadPool threads DO inherit the Trace.CorrelationManager.ActivityId and Trace.CorrelationManager.LogicalOperationStack values from.. lo1 Guid g1 Guid.NewGuid Trace.CorrelationManager.ActivityId g1 Thread.Sleep 3000 Guid g2 Trace.CorrelationManager.ActivityId..
|