Ejemplo n.º 1
0
        private static async Task RunGetTypesAsync()
        {
            string continuationToken;

            do
            {
                GetTypesPage types = await _client.GetTypesPagedAsync();

                PrintResponse(types.Types);
                continuationToken = types.ContinuationToken;
            }while (continuationToken != null);
        }