// ------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. // ------------------------------------------------------------------------------ namespace Microsoft.Graph { /// /// A key value pair to be added to the request headers. /// public class HeaderOption : Option { /// /// Create a header option. /// /// The name, or key, of the header option. /// The value for the header option. public HeaderOption(string name, string value) : base(name, value) { } } }