Exemplo n.º 1
0
        /// <summary>Snippet for ListAnswerRecordsAsync</summary>
        public async Task ListAnswerRecordsRequestObjectAsync()
        {
            // Snippet: ListAnswerRecordsAsync(ListAnswerRecordsRequest, CallSettings)
            // Create client
            AnswerRecordsClient answerRecordsClient = await AnswerRecordsClient.CreateAsync();

            // Initialize request argument(s)
            ListAnswerRecordsRequest request = new ListAnswerRecordsRequest
            {
                ParentAsProjectName = ProjectName.FromProject("[PROJECT]"),
                Filter = "",
            };
            // Make the request
            PagedAsyncEnumerable <ListAnswerRecordsResponse, AnswerRecord> response = answerRecordsClient.ListAnswerRecordsAsync(request);

            // Iterate over all response items, lazily performing RPCs as required
            await response.ForEachAsync((AnswerRecord item) =>
            {
                // Do something with each item
                Console.WriteLine(item);
            });

            // Or iterate over pages (of server-defined size), performing one RPC per page
            await response.AsRawResponses().ForEachAsync((ListAnswerRecordsResponse page) =>
            {
                // Do something with each page of items
                Console.WriteLine("A page of results:");
                foreach (AnswerRecord item in page)
                {
                    // Do something with each item
                    Console.WriteLine(item);
                }
            });

            // Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
            int pageSize = 10;
            Page <AnswerRecord> singlePage = await response.ReadPageAsync(pageSize);

            // Do something with the page of items
            Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
            foreach (AnswerRecord item in singlePage)
            {
                // Do something with each item
                Console.WriteLine(item);
            }
            // Store the pageToken, for when the next page is required.
            string nextPageToken = singlePage.NextPageToken;
            // End snippet
        }
Exemplo n.º 2
0
 partial void Modify_ListAnswerRecordsRequest(ref ListAnswerRecordsRequest request, ref gaxgrpc::CallSettings settings);
Exemplo n.º 3
0
 /// <summary>
 /// Returns the list of all answer records in the specified project in reverse
 /// chronological order.
 /// </summary>
 /// <param name="request">The request object containing all of the parameters for the API call.</param>
 /// <param name="callSettings">If not null, applies overrides to this RPC call.</param>
 /// <returns>A pageable asynchronous sequence of <see cref="AnswerRecord"/> resources.</returns>
 public override gax::PagedAsyncEnumerable <ListAnswerRecordsResponse, AnswerRecord> ListAnswerRecordsAsync(ListAnswerRecordsRequest request, gaxgrpc::CallSettings callSettings = null)
 {
     Modify_ListAnswerRecordsRequest(ref request, ref callSettings);
     return(new gaxgrpc::GrpcPagedAsyncEnumerable <ListAnswerRecordsRequest, ListAnswerRecordsResponse, AnswerRecord>(_callListAnswerRecords, request, callSettings));
 }
Exemplo n.º 4
0
 /// <summary>
 /// Returns the list of all answer records in the specified project in reverse
 /// chronological order.
 /// </summary>
 /// <param name="request">The request object containing all of the parameters for the API call.</param>
 /// <param name="callSettings">If not null, applies overrides to this RPC call.</param>
 /// <returns>A pageable asynchronous sequence of <see cref="AnswerRecord"/> resources.</returns>
 public virtual gax::PagedAsyncEnumerable <ListAnswerRecordsResponse, AnswerRecord> ListAnswerRecordsAsync(ListAnswerRecordsRequest request, gaxgrpc::CallSettings callSettings = null) =>
 throw new sys::NotImplementedException();