// ------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. // ------------------------------------------------------------------------------ namespace Microsoft.Graph.Core.Requests { using System.Collections.Generic; /// /// The type BatchRequestBuilder /// public class BatchRequestBuilder: BaseRequestBuilder, IBatchRequestBuilder { /// /// Constructs a new BatchRequestBuilder. /// /// The URL for the built request. /// The for handling requests. public BatchRequestBuilder( string requestUrl, IBaseClient client) : base(requestUrl, client) { } /// /// Builds the request. /// /// The built request. public IBatchRequest Request() { return this.Request(null); } /// /// Builds the request. /// /// The query and header options for the request. /// The built request. public IBatchRequest Request(IEnumerable