/// <summary>Snippet for GenerateMediationReport</summary> /// <remarks> /// This snippet has been automatically generated for illustrative purposes only. /// It may require modifications to work in your environment. /// </remarks> public async Task GenerateMediationReportRequestObject() { // Create client AdMobApiClient adMobApiClient = AdMobApiClient.Create(); // Initialize request argument(s) GenerateMediationReportRequest request = new GenerateMediationReportRequest { Parent = "", ReportSpec = new MediationReportSpec(), }; // Make the request, returning a streaming response AdMobApiClient.GenerateMediationReportStream response = adMobApiClient.GenerateMediationReport(request); // Read streaming responses from server until complete // Note that C# 8 code can use await foreach AsyncResponseStream <GenerateMediationReportResponse> responseStream = response.GetResponseStream(); while (await responseStream.MoveNextAsync()) { GenerateMediationReportResponse responseItem = responseStream.Current; // Do something with streamed response } // The response stream has completed }
/// <summary>Snippet for GetPublisherAccount</summary> /// <remarks> /// This snippet has been automatically generated for illustrative purposes only. /// It may require modifications to work in your environment. /// </remarks> public void GetPublisherAccount() { // Create client AdMobApiClient adMobApiClient = AdMobApiClient.Create(); // Initialize request argument(s) string name = ""; // Make the request PublisherAccount response = adMobApiClient.GetPublisherAccount(name); }
/// <summary>Snippet for GetPublisherAccount</summary> /// <remarks> /// This snippet has been automatically generated for illustrative purposes only. /// It may require modifications to work in your environment. /// </remarks> public void GetPublisherAccountRequestObject() { // Create client AdMobApiClient adMobApiClient = AdMobApiClient.Create(); // Initialize request argument(s) GetPublisherAccountRequest request = new GetPublisherAccountRequest { Name = "", }; // Make the request PublisherAccount response = adMobApiClient.GetPublisherAccount(request); }
/// <summary>Snippet for GetPublisherAccount</summary> public void GetPublisherAccount() { // Snippet: GetPublisherAccount(string, CallSettings) // Create client AdMobApiClient adMobApiClient = AdMobApiClient.Create(); // Initialize request argument(s) string name = ""; // Make the request PublisherAccount response = adMobApiClient.GetPublisherAccount(name); // End snippet }
/// <summary>Snippet for ListPublisherAccounts</summary> public void ListPublisherAccountsRequestObject() { // Snippet: ListPublisherAccounts(ListPublisherAccountsRequest, CallSettings) // Create client AdMobApiClient adMobApiClient = AdMobApiClient.Create(); // Initialize request argument(s) ListPublisherAccountsRequest request = new ListPublisherAccountsRequest { }; // Make the request PagedEnumerable <ListPublisherAccountsResponse, PublisherAccount> response = adMobApiClient.ListPublisherAccounts(request); // Iterate over all response items, lazily performing RPCs as required foreach (PublisherAccount 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 (ListPublisherAccountsResponse page in response.AsRawResponses()) { // Do something with each page of items Console.WriteLine("A page of results:"); foreach (PublisherAccount 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 <PublisherAccount> 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 (PublisherAccount 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 }