DocSpace-client/thirdparty/Microsoft.Graph.Core/Requests/IBatchRequestBuilder.cs
2020-07-10 18:37:02 +03:00

27 lines
996 B
C#

// ------------------------------------------------------------------------------
// 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;
/// <summary>
/// The interface IBatchRequestBuilder
/// </summary>
public interface IBatchRequestBuilder : IBaseRequestBuilder
{
/// <summary>
/// Builds the request.
/// </summary>
/// <returns>The built request.</returns>
IBatchRequest Request();
/// <summary>
/// Builds the request.
/// </summary>
/// <param name="options">The query and header options for the request.</param>
/// <returns>The built request.</returns>
IBatchRequest Request(IEnumerable<Option> options);
}
}