Show / Hide Table of Contents

Interface IHttpParam

HTTP parameter

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

Properties

HasBinaryFile

Does parameter contain binary file

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

Methods

GetBinaryFields()

Return binary value from HTTP parameter

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

HTTP parameter list

GetTextFields()

Return text value item from HTTP parameter

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

HTTP parameter list

ToQuery()

Convert to GET parameter query string

Declaration
string ToQuery()
Returns
Type Description
String

Query string

In This Article
Back to top Generated by DocFX