Example #1
0
        public void GetLength()
        {
            string queueName = "SubmitOrder";

            LtQueueService.LtQueueClient client = new LtQueueService.LtQueueClient();

            LtQueueService.QueueModel ret = client.QueueLength(queueName);

            if (ret.Value != null)
            {
                Debug.WriteLine(ret.Value);
            }
            else
            {
                Debug.WriteLine(ret.ErrorMessage);
            }
        }