Interface IHttpHeader
HTTP header interface
Namespace: Pixiv.VroidSdk.Networking
Assembly: Pixiv.VroidSdk.dll
Syntax
public interface IHttpHeader
  Methods
Add(String, String)
Add parameter to header
Declaration
void Add(string key, string value)
  Parameters
| Type | Name | Description | 
|---|---|---|
| String | key | Header key  | 
      
| String | value | Header value  | 
      
ToDictionary()
Convert header to IDictionary<TKey,TValue>
Declaration
IDictionary<string, string> ToDictionary()
  Returns
| Type | Description | 
|---|---|
| IDictionary<String, String> | HTTP header  |