// ------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. // ------------------------------------------------------------------------------ namespace Microsoft.Graph { using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Net.Http; using System.Net.Http.Headers; using System.Text; using System.Threading; using System.Threading.Tasks; /// /// The base request class. /// public class BaseRequest : IBaseRequest { private IResponseHandler responseHandler; /// /// Constructs a new . /// /// The URL for the request. /// The for handling requests. /// The header and query options for the request. public BaseRequest( string requestUrl, IBaseClient client, IEnumerable