예제 #1
0
        /// <summary>Snippet for ListDomainMappingsAsync</summary>
        public async Task ListDomainMappingsRequestObjectAsync()
        {
            // Snippet: ListDomainMappingsAsync(ListDomainMappingsRequest, CallSettings)
            // Create client
            DomainMappingsClient domainMappingsClient = await DomainMappingsClient.CreateAsync();

            // Initialize request argument(s)
            ListDomainMappingsRequest request = new ListDomainMappingsRequest {
                Parent = "",
            };
            // Make the request
            PagedAsyncEnumerable <ListDomainMappingsResponse, DomainMapping> response = domainMappingsClient.ListDomainMappingsAsync(request);

            // Iterate over all response items, lazily performing RPCs as required
            await response.ForEachAsync((DomainMapping 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((ListDomainMappingsResponse page) =>
            {
                // Do something with each page of items
                Console.WriteLine("A page of results:");
                foreach (DomainMapping 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 <DomainMapping> 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 (DomainMapping 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
        /// <summary>Snippet for ListDomainMappings</summary>
        /// <remarks>
        /// This snippet has been automatically generated for illustrative purposes only.
        /// It may require modifications to work in your environment.
        /// </remarks>
        public void ListDomainMappingsRequestObject()
        {
            // Create client
            DomainMappingsClient domainMappingsClient = DomainMappingsClient.Create();
            // Initialize request argument(s)
            ListDomainMappingsRequest request = new ListDomainMappingsRequest {
                Parent = "",
            };
            // Make the request
            PagedEnumerable <ListDomainMappingsResponse, DomainMapping> response = domainMappingsClient.ListDomainMappings(request);

            // Iterate over all response items, lazily performing RPCs as required
            foreach (DomainMapping 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 (ListDomainMappingsResponse page in response.AsRawResponses())
            {
                // Do something with each page of items
                Console.WriteLine("A page of results:");
                foreach (DomainMapping 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 <DomainMapping> 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 (DomainMapping 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;
        }
 /// <summary>
 /// Lists the domain mappings on an application.
 /// </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="DomainMapping"/> resources.</returns>
 public override gax::PagedAsyncEnumerable <ListDomainMappingsResponse, DomainMapping> ListDomainMappingsAsync(ListDomainMappingsRequest request, gaxgrpc::CallSettings callSettings = null)
 {
     Modify_ListDomainMappingsRequest(ref request, ref callSettings);
     return(new gaxgrpc::GrpcPagedAsyncEnumerable <ListDomainMappingsRequest, ListDomainMappingsResponse, DomainMapping>(_callListDomainMappings, request, callSettings));
 }
 partial void Modify_ListDomainMappingsRequest(ref ListDomainMappingsRequest request, ref gaxgrpc::CallSettings settings);
 /// <summary>
 /// Lists the domain mappings on an application.
 /// </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="DomainMapping"/> resources.</returns>
 public virtual gax::PagedAsyncEnumerable <ListDomainMappingsResponse, DomainMapping> ListDomainMappingsAsync(ListDomainMappingsRequest request, gaxgrpc::CallSettings callSettings = null) =>
 throw new sys::NotImplementedException();