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

23 lines
838 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
{
/// <summary>
/// A key value pair to be added to the request headers.
/// </summary>
public class HeaderOption : Option
{
/// <summary>
/// Create a header option.
/// </summary>
/// <param name="name">The name, or key, of the header option.</param>
/// <param name="value">The value for the header option.</param>
public HeaderOption(string name, string value)
: base(name, value)
{
}
}
}