Example #1
0
        public virtual async Task <List <RegistryEntry> > ListAsync()
        {
            var response = await client.GetAsync <Registration, RegistrationResponse>(REGISTRY_RESOURCE);

            return(response.Registry);
        }