Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Class: RT.Util.HArg

Summary

Encapsulates an argument passed into an HTTP request sent by HClient.

Constructors

HArg(string name, string value)
Constructor for a key-value argument (not a file upload).
HArg(string name, JsonValue value)
HArg(string name, string fileName, string fileContentType, byte[] fileContent)
Constructor for a file upload.

Instance properties

byte[] The name of the file to upload. (see also remarks)
string
string
stringThe name of the argument.
bool Determines whether this argument is valid. (see also remarks)
boolDetermines whether this argument can be used in a call to HClient.PostUrlencoded(string, params HArg[]).
string The value of the argument, or null if this is a file upload. (see also remarks)