HttpHeaderParameter
Namespace: Meshmakers.Octo.MeshAdapter.Nodes.Transform
Represents a header parameter for HTTP requests
public record HttpHeaderParameter : IEquatable<HttpHeaderParameter>
Inheritance Object → HttpHeaderParameter
Implements IEquatable<HttpHeaderParameter>
Properties
Name
The name of the header (e.g., "Authorization", "Content-Type")
public string Name { get; set; }
Property Value
ValuePath
The path to the value for the header (optional if Value is provided)
public string ValuePath { get; set; }
Property Value
Value
The direct value to use for the header (optional if ValuePath is provided)
public string Value { get; set; }
Property Value
Constructors
HttpHeaderParameter()
public HttpHeaderParameter()