Interface IHttpHeader
HTTPヘッダインターフェース
Namespace: Pixiv.VroidSdk.Networking
Assembly: Pixiv.VroidSdk.dll
Syntax
public interface IHttpHeader
Methods
Add(String, String)
ヘッダにパラメータを追加する
Declaration
void Add(string key, string value)
Parameters
| Type | Name | Description |
|---|---|---|
| String | key | ヘッダのキー |
| String | value | ヘッダの値 |
ToDictionary()
ヘッダをIDictionary<TKey,TValue>に変換する
Declaration
IDictionary<string, string> ToDictionary()
Returns
| Type | Description |
|---|---|
| IDictionary<String, String> | HTTPヘッダ |