Esempio n. 1
0
        public async Task CreateDeleteQueue()
        {
            IgnoreTestInLiveMode();
            //create queue
            string          queueName = Recording.GenerateAssetName("queue");
            ServiceBusQueue queue     = (await _queueCollection.CreateOrUpdateAsync(WaitUntil.Completed, queueName, new ServiceBusQueueData())).Value;

            Assert.NotNull(queue);
            Assert.AreEqual(queue.Id.Name, queueName);

            //validate if created successfully
            queue = await _queueCollection.GetIfExistsAsync(queueName);

            Assert.NotNull(queue);
            Assert.IsTrue(await _queueCollection.ExistsAsync(queueName));

            //delete queue
            await queue.DeleteAsync(WaitUntil.Completed);

            //validate
            queue = await _queueCollection.GetIfExistsAsync(queueName);

            Assert.Null(queue);
            Assert.IsFalse(await _queueCollection.ExistsAsync(queueName));
        }
Esempio n. 2
0
        public async Task Delete()
        {
            #region Snippet:Managing_ServiceBusQueues_DeleteQueue
            ServiceBusQueue serviceBusQueue = await serviceBusQueueCollection.GetAsync("myQueue");

            await serviceBusQueue.DeleteAsync(WaitUntil.Completed);

            #endregion
        }