/// <summary>Snippet for BatchCreateRowsAsync</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 BatchCreateRowsRequestObjectAsync()
        {
            // Create client
            TablesServiceClient tablesServiceClient = await TablesServiceClient.CreateAsync();

            // Initialize request argument(s)
            BatchCreateRowsRequest request = new BatchCreateRowsRequest
            {
                Parent   = "",
                Requests =
                {
                    new CreateRowRequest(),
                },
            };
            // Make the request
            BatchCreateRowsResponse response = await tablesServiceClient.BatchCreateRowsAsync(request);
        }
Exemplo n.º 2
0
        /// <summary>Snippet for BatchCreateRowsAsync</summary>
        public async Task BatchCreateRowsRequestObjectAsync()
        {
            // Snippet: BatchCreateRowsAsync(BatchCreateRowsRequest, CallSettings)
            // Additional: BatchCreateRowsAsync(BatchCreateRowsRequest, CancellationToken)
            // Create client
            TablesServiceClient tablesServiceClient = await TablesServiceClient.CreateAsync();

            // Initialize request argument(s)
            BatchCreateRowsRequest request = new BatchCreateRowsRequest
            {
                Parent   = "",
                Requests =
                {
                    new CreateRowRequest(),
                },
            };
            // Make the request
            BatchCreateRowsResponse response = await tablesServiceClient.BatchCreateRowsAsync(request);

            // End snippet
        }