コード例 #1
0
        public async Task AddAlertToErrorQueue(string errorQueueName, Alert alert)
        {
            QueueClient errorQ = _ironMq.Queue(errorQueueName);

            await errorQ.AddAlert(alert);
        }