示例#1
0
        /// <summary>Snippet for GetProjectBillingInfoAsync</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 GetProjectBillingInfoAsync()
        {
            // Create client
            CloudBillingClient cloudBillingClient = await CloudBillingClient.CreateAsync();

            // Initialize request argument(s)
            string name = "";
            // Make the request
            ProjectBillingInfo response = await cloudBillingClient.GetProjectBillingInfoAsync(name);
        }
        /// <summary>Snippet for GetProjectBillingInfoAsync</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 GetProjectBillingInfoRequestObjectAsync()
        {
            // Create client
            CloudBillingClient cloudBillingClient = await CloudBillingClient.CreateAsync();

            // Initialize request argument(s)
            GetProjectBillingInfoRequest request = new GetProjectBillingInfoRequest {
                Name = "",
            };
            // Make the request
            ProjectBillingInfo response = await cloudBillingClient.GetProjectBillingInfoAsync(request);
        }