/// <summary>Snippet for ListNetworkEndpoints</summary> public void ListNetworkEndpoints() { // Snippet: ListNetworkEndpoints(string, string, CallSettings) // Create client GlobalNetworkEndpointGroupsClient globalNetworkEndpointGroupsClient = GlobalNetworkEndpointGroupsClient.Create(); // Initialize request argument(s) string project = ""; string networkEndpointGroup = ""; // Make the request NetworkEndpointGroupsListNetworkEndpoints response = globalNetworkEndpointGroupsClient.ListNetworkEndpoints(project, networkEndpointGroup); // End snippet }
/// <summary>Snippet for ListNetworkEndpoints</summary> public void ListNetworkEndpointsRequestObject() { // Snippet: ListNetworkEndpoints(ListNetworkEndpointsGlobalNetworkEndpointGroupsRequest, CallSettings) // Create client GlobalNetworkEndpointGroupsClient globalNetworkEndpointGroupsClient = GlobalNetworkEndpointGroupsClient.Create(); // Initialize request argument(s) ListNetworkEndpointsGlobalNetworkEndpointGroupsRequest request = new ListNetworkEndpointsGlobalNetworkEndpointGroupsRequest { PageToken = "", MaxResults = 0U, Filter = "", OrderBy = "", NetworkEndpointGroup = "", Project = "", ReturnPartialSuccess = false, }; // Make the request NetworkEndpointGroupsListNetworkEndpoints response = globalNetworkEndpointGroupsClient.ListNetworkEndpoints(request); // End snippet }
/// <summary>Snippet for ListNetworkEndpoints</summary> public void ListNetworkEndpoints() { // Snippet: ListNetworkEndpoints(string, string, string, int?, CallSettings) // Create client GlobalNetworkEndpointGroupsClient globalNetworkEndpointGroupsClient = GlobalNetworkEndpointGroupsClient.Create(); // Initialize request argument(s) string project = ""; string networkEndpointGroup = ""; // Make the request PagedEnumerable <NetworkEndpointGroupsListNetworkEndpoints, NetworkEndpointWithHealthStatus> response = globalNetworkEndpointGroupsClient.ListNetworkEndpoints(project, networkEndpointGroup); // Iterate over all response items, lazily performing RPCs as required foreach (NetworkEndpointWithHealthStatus 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 (NetworkEndpointGroupsListNetworkEndpoints page in response.AsRawResponses()) { // Do something with each page of items Console.WriteLine("A page of results:"); foreach (NetworkEndpointWithHealthStatus 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 <NetworkEndpointWithHealthStatus> 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 (NetworkEndpointWithHealthStatus 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 }