Exemple #1
0
        /* WAIT ACTIONS */

        public IActionSyntaxProvider Wait()
        {
            // Before
            _logger.LogMessage("Wait for default time");

            // Execute
            if (!IsInDryRunMode)
            {
                _actionSyntaxProvider.Wait();
            }

            // After
            return(this);
        }