NServiceBus.MessagePump.QueueIsTransactional C# (CSharp) Method

QueueIsTransactional() private method

private QueueIsTransactional ( ) : bool
return bool
        bool QueueIsTransactional()
        {
            try
            {
                return inputQueue.Transactional;
            }
            catch (Exception ex)
            {
                var error = $"There is a problem with the input inputQueue: {inputQueue.Path}. See the enclosed exception for details.";
                throw new InvalidOperationException(error, ex);
            }
        }