I am using a legacy STA COM object in a C# windows service that runs as an MTA thread. In order to use this COM object I created it in an STA thread which seems to work. Upon further investigation I understand that this STA thread needs a message loop. I don't have a message loop and I am not marshaling the method calls onto the STA thread but it seems to work.
I am going to make changes to add the SynchronizationContext functionality in order to marshal the method calls onto the STA thread. If I marshal the method calls onto the STA thread that contains the COM object or Interop, do I still need to provide a message pump?