Skip to main content

HttpHeaderParameter

Namespace: Meshmakers.Octo.MeshAdapter.Nodes.Transform

Represents a header parameter for HTTP requests

public record HttpHeaderParameter : IEquatable<HttpHeaderParameter>

Inheritance ObjectHttpHeaderParameter
Implements IEquatable<HttpHeaderParameter>

Properties

Name

The name of the header (e.g., "Authorization", "Content-Type")

public string Name { get; set; }

Property Value

String

ValuePath

The path to the value for the header (optional if Value is provided)

public string ValuePath { get; set; }

Property Value

String

Value

The direct value to use for the header (optional if ValuePath is provided)

public string Value { get; set; }

Property Value

String

Constructors

HttpHeaderParameter()

public HttpHeaderParameter()