I have window background service to read Message queue using NServiceBus.
I want to debug this windowservice to trace the flow so have added Debugger.Launch()
inside Service class when i run service its launching service in debuggermode.
But
Now i want to keep debugger at RequestDataMessageHandler.cs
class which initiated when a message reaches queue.
I want to debug this class so kept Debugger.Launch()
inside this class. But debugger in not launching. Handler class reads message from queue.
What will be the cause?