/// <summary>Snippet for AggregatedListAsync</summary> public async Task AggregatedListRequestObjectAsync() { // Snippet: AggregatedListAsync(AggregatedListPacketMirroringsRequest, CallSettings) // Create client PacketMirroringsClient packetMirroringsClient = await PacketMirroringsClient.CreateAsync(); // Initialize request argument(s) AggregatedListPacketMirroringsRequest request = new AggregatedListPacketMirroringsRequest { OrderBy = "", Project = "", Filter = "", IncludeAllScopes = false, ReturnPartialSuccess = false, }; // Make the request PagedAsyncEnumerable <PacketMirroringAggregatedList, KeyValuePair <string, PacketMirroringsScopedList> > response = packetMirroringsClient.AggregatedListAsync(request); // Iterate over all response items, lazily performing RPCs as required await response.ForEachAsync((KeyValuePair <string, PacketMirroringsScopedList> 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((PacketMirroringAggregatedList page) => { // Do something with each page of items Console.WriteLine("A page of results:"); foreach (KeyValuePair <string, PacketMirroringsScopedList> 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 <KeyValuePair <string, PacketMirroringsScopedList> > 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 (KeyValuePair <string, PacketMirroringsScopedList> 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 }
/// <summary>Snippet for AggregatedList</summary> public void AggregatedListRequestObject() { // Snippet: AggregatedList(AggregatedListPacketMirroringsRequest, CallSettings) // Create client PacketMirroringsClient packetMirroringsClient = PacketMirroringsClient.Create(); // Initialize request argument(s) AggregatedListPacketMirroringsRequest request = new AggregatedListPacketMirroringsRequest { PageToken = "", MaxResults = 0U, OrderBy = "", Project = "", Filter = "", IncludeAllScopes = false, ReturnPartialSuccess = false, }; // Make the request PacketMirroringAggregatedList response = packetMirroringsClient.AggregatedList(request); // End snippet }
/// <summary>Snippet for AggregatedListAsync</summary> public async Task AggregatedListRequestObjectAsync() { // Snippet: AggregatedListAsync(AggregatedListPacketMirroringsRequest, CallSettings) // Additional: AggregatedListAsync(AggregatedListPacketMirroringsRequest, CancellationToken) // Create client PacketMirroringsClient packetMirroringsClient = await PacketMirroringsClient.CreateAsync(); // Initialize request argument(s) AggregatedListPacketMirroringsRequest request = new AggregatedListPacketMirroringsRequest { PageToken = "", MaxResults = 0U, OrderBy = "", Project = "", Filter = "", IncludeAllScopes = false, ReturnPartialSuccess = false, }; // Make the request PacketMirroringAggregatedList response = await packetMirroringsClient.AggregatedListAsync(request); // End snippet }