/// <summary>Snippet for List</summary> public void List() { // Snippet: List(string, CallSettings) // Create client GlobalOperationsClient globalOperationsClient = GlobalOperationsClient.Create(); // Initialize request argument(s) string project = ""; // Make the request OperationList response = globalOperationsClient.List(project); // End snippet }
/// <summary>Snippet for List</summary> public void ListRequestObject() { // Snippet: List(ListGlobalOperationsRequest, CallSettings) // Create client GlobalOperationsClient globalOperationsClient = GlobalOperationsClient.Create(); // Initialize request argument(s) ListGlobalOperationsRequest request = new ListGlobalOperationsRequest { OrderBy = "", Project = "", Filter = "", ReturnPartialSuccess = false, }; // Make the request PagedEnumerable <OperationList, Operation> response = globalOperationsClient.List(request); // Iterate over all response items, lazily performing RPCs as required foreach (Operation item in response) { // Do something with each item Console.WriteLine(item); } // Or iterate over pages (of server-defined size), performing one RPC per page foreach (OperationList page in response.AsRawResponses()) { // Do something with each page of items Console.WriteLine("A page of results:"); foreach (Operation 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 <Operation> singlePage = response.ReadPage(pageSize); // Do something with the page of items Console.WriteLine($"A page of {pageSize} results (unless it's the final page):"); foreach (Operation 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 List</summary> public void ListRequestObject() { // Snippet: List(ListGlobalOperationsRequest, CallSettings) // Create client GlobalOperationsClient globalOperationsClient = GlobalOperationsClient.Create(); // Initialize request argument(s) ListGlobalOperationsRequest request = new ListGlobalOperationsRequest { PageToken = "", MaxResults = 0U, OrderBy = "", Project = "", Filter = "", ReturnPartialSuccess = false, }; // Make the request OperationList response = globalOperationsClient.List(request); // End snippet }