Show / Hide Table of Contents

Interface IHttpParam

HTTPパラメータ

Namespace: Pixiv.VroidSdk.Networking
Assembly: Pixiv.VroidSdk.dll
Syntax
public interface IHttpParam

Properties

HasBinaryFile

バイナリデータをパラメータに含むか

Declaration
bool HasBinaryFile { get; }
Property Value
Type Description
Boolean

Methods

GetBinaryFields()

HTTPパラメータのうち、バイナリ値であるものを返す

Declaration
IList<KeyValuePair<string, byte[]>> GetBinaryFields()
Returns
Type Description
IList<KeyValuePair<String, Byte[]>>

HTTPパラメータのリスト

GetTextFields()

HTTPパラメータのうち、テキスト値であるものを返す

Declaration
IList<KeyValuePair<string, string>> GetTextFields()
Returns
Type Description
IList<KeyValuePair<String, String>>

HTTPパラメータのリスト

ToQuery()

GETパラメータのクエリ文字列に変換する

Declaration
string ToQuery()
Returns
Type Description
String

クエリ文字列

In This Article
Back to top Generated by DocFX