ListGlanceImages() public method

public ListGlanceImages ( int limit = null, string marker = null, string name = null, string visibility = null, string memberStatus = null, string owner = null, string status = null, int sizeMin = null, int sizeMax = null, string sortKey = null, string sortDir = null, string tag = null ) : IEnumerable
limit int
marker string
name string
visibility string
memberStatus string
owner string
status string
sizeMin int
sizeMax int
sortKey string
sortDir string
tag string
return IEnumerable
        public void GetGlanceImageTest()
        {
            var os = new OpenStackMember(UserName, Password, TenantName, TenantId);
            var images = os.ListGlanceImages();
            Assert.IsNotNull(images);
            foreach (var i in images)
            {
                var image = os.GetGlanceImage(i.Id);
                Assert.IsNotNull(image);

            }
        }
 public void ListGlanceImagesTest()
 {
     var os = new OpenStackMember(UserName, Password, TenantName, TenantId);
     var images = os.ListGlanceImages();
     Assert.IsNotNull(images);
 }