Exemple #1
0
 public void CreateQueueIfNotExists(string name)
 {
     if (!_queueManager.Exists(name))
     {
         _queueManager.Create(name);
     }
 }