コード例 #1
0
        /// <summary>Snippet for ListRecordingsAsync</summary>
        public async Task ListRecordingsRequestObjectAsync()
        {
            // Snippet: ListRecordingsAsync(ListRecordingsRequest, CallSettings)
            // Create client
            RecordingsClient recordingsClient = await RecordingsClient.CreateAsync();

            // Initialize request argument(s)
            ListRecordingsRequest request = new ListRecordingsRequest
            {
                ParentAsCallName = CallName.FromProjectCall("[PROJECT]", "[CALL]"),
                View             = RecordingView.Unspecified,
            };
            // Make the request
            PagedAsyncEnumerable <ListRecordingsResponse, Recording> response = recordingsClient.ListRecordingsAsync(request);

            // Iterate over all response items, lazily performing RPCs as required
            await response.ForEachAsync((Recording 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((ListRecordingsResponse page) =>
            {
                // Do something with each page of items
                Console.WriteLine("A page of results:");
                foreach (Recording 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 <Recording> 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 (Recording 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
        }
コード例 #2
0
 partial void Modify_ListRecordingsRequest(ref ListRecordingsRequest request, ref gaxgrpc::CallSettings settings);
コード例 #3
0
 /// <summary>
 /// Lists the Recordings of the specified project.
 /// List returns Recordings sorted by create_time descending.
 ///
 /// The caller must have `voice.recordings.list` permission on the project.
 /// </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="Recording"/> resources.</returns>
 public override gax::PagedAsyncEnumerable <ListRecordingsResponse, Recording> ListRecordingsAsync(ListRecordingsRequest request, gaxgrpc::CallSettings callSettings = null)
 {
     Modify_ListRecordingsRequest(ref request, ref callSettings);
     return(new gaxgrpc::GrpcPagedAsyncEnumerable <ListRecordingsRequest, ListRecordingsResponse, Recording>(_callListRecordings, request, callSettings));
 }
コード例 #4
0
 /// <summary>
 /// Lists the Recordings of the specified project.
 /// List returns Recordings sorted by create_time descending.
 ///
 /// The caller must have `voice.recordings.list` permission on the project.
 /// </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="Recording"/> resources.</returns>
 public virtual gax::PagedAsyncEnumerable <ListRecordingsResponse, Recording> ListRecordingsAsync(ListRecordingsRequest request, gaxgrpc::CallSettings callSettings = null) =>
 throw new sys::NotImplementedException();