async Task RequestImmediateDispatchUsingScope(IPipelineContext context) { #region RequestImmediateDispatchUsingScope using (new TransactionScope(TransactionScopeOption.Suppress, TransactionScopeAsyncFlowOption.Enabled)) { await context.SendLocal(new MyMessage()); } #endregion }