MTS is a popular COM+ service to do distributed transation control. I am wondeirng what is the .Net replacement for it since Com+ will be phased out.
AFAIK there is no replacement to MTS in .NET Framework, but it is very well integrated through System.EnterpriseServices
namespace, specifically you could lookup ServicedComponent
to get the transaction control feature you are looking for.
Have a look at MSDN documentation of this.