HTTPHeader describes a custom header to be used in HTTP probes
Assembly: KubernetesClient.dll
public record V1HTTPHeader : IEquatable<V1HTTPHeader>
Constructors
View Source
Declaration
View Source
Declaration
protected V1HTTPHeader(V1HTTPHeader original)
Parameters
Properties
View Source
Declaration
protected virtual Type EqualityContract { get; }
Property Value
View Source
The header field name. This will be canonicalized upon output, so case-variant
names will be understood as the same header.
Declaration
[JsonPropertyName("name")]
public string Name { get; set; }
Property Value
View Source
Declaration
[JsonPropertyName("value")]
public string Value { get; set; }
Property Value
Methods
View Source
Declaration
public override bool Equals(object? obj)
Parameters
| Type |
Name |
Description |
| object |
obj |
|
Returns
Overrides
View Source
Declaration
public virtual bool Equals(V1HTTPHeader? other)
Parameters
Returns
View Source
Declaration
public override int GetHashCode()
Returns
Overrides
View Source
Declaration
protected virtual bool PrintMembers(StringBuilder builder)
Parameters
Returns
View Source
Declaration
public override string ToString()
Returns
Overrides
Operators
View Source
Declaration
public static bool operator ==(V1HTTPHeader? left, V1HTTPHeader? right)
Parameters
Returns
View Source
Declaration
public static bool operator !=(V1HTTPHeader? left, V1HTTPHeader? right)
Parameters
Returns
Implements