<PackageReference Include="Azure.Core" Version="1.47.1" />

HttpHeader

public struct HttpHeader : IEquatable<HttpHeader>
Represents an HTTP header.
public static class Common

Commonly defined header values.

public static class Names

Contains names of commonly used headers.

public string Name { get; }

Gets header name.

public string Value { get; }

Gets header value. If the header has multiple values they would be joined with a comma. To get separate values use TryGetValues or TryGetValues.

public HttpHeader(string name, string value)

Creates a new instance of HttpHeader with provided name and value.

public bool Equals(HttpHeader other)

Indicates whether the current object is equal to another object of the same type.