예제 #1
0
        public async Task Get_ActionConfigurations()
        {
            GetActionConfigurationsResponse response = await actionService.GetActionConfigurationsAsync(VALID_IP, VALID_USER, VALID_PASS);

            if (response.IsSuccess)
            {
                foreach (ActionConfiguration ac in response.Configurations)
                {
                    Console.WriteLine(ac.ToString());
                }
            }

            Assert.IsTrue(response.IsSuccess && response.HttpStatusCode == System.Net.HttpStatusCode.OK && !response.SOAPContent.IsEmpty);
        }