/// <summary>Snippet for AMethodAsync</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 AMethodRequestObjectAsync()
        {
            // Create client
            BasicClient basicClient = await BasicClient.CreateAsync();

            // Initialize request argument(s)
            Request request = new Request {
            };
            // Make the request
            Response response = await basicClient.AMethodAsync(request);
        }
예제 #2
0
        /// <summary>Snippet for AMethodAsync</summary>
        public async Task AMethodRequestObjectAsync()
        {
            // Snippet: AMethodAsync(Request, CallSettings)
            // Additional: AMethodAsync(Request, CancellationToken)
            // Create client
            BasicClient basicClient = await BasicClient.CreateAsync();

            // Initialize request argument(s)
            Request request = new Request {
            };
            // Make the request
            Response response = await basicClient.AMethodAsync(request);

            // End snippet
        }