DocSpace-buildtools/thirdparty/Microsoft.Graph.Core/Requests/Options/HeaderOption.cs

23 lines
838 B
C#
Raw Normal View History

2020-07-10 15:37:02 +00:00
// ------------------------------------------------------------------------------
// 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)
{
}
}
}