Struct HttpHeader
Represents an HTTP request header key-value pair
Inherited Members
Namespace: GLTFast.Loading
Syntax
[Serializable]
public struct HttpHeader
Constructors
HttpHeader(String, String)
Creates a new HTTP header entry
Declaration
public HttpHeader(string key, string value)
Parameters
Type | Name | Description |
---|---|---|
String | key | Identifier |
String | value | Value |
Properties
Key
HTTP header key/name
Declaration
public readonly string Key { get; }
Property Value
Type | Description |
---|---|
String |
Value
HTTP header value
Declaration
public readonly string Value { get; }
Property Value
Type | Description |
---|---|
String |