Functions
Adds a Request.Header to the request. Existing headers with the same name will not be overridden.
Adds a Request.Header with the specified name and value to the request. Existing headers with the same name will not be overridden.
Adds multiple Request.Headers to the request. Existing headers with the same name will not be overridden.
Adds a Request.Parameter to the request. For GET requests, the parameter will be appended to the end of the URL as a query parameter. For POST requests, the parameter will be added to the request's form body.
Adds multiple Request.Parameters to the request. For GET requests, the parameters will be appended to the end of the URL as query parameters. For POST requests, the parameters will be added to the request's form body.
Sets the request method to Method.Head.
Sets the request method to Method.Post.
Creates a multipart POST request with the given parameters, representing the data of the request's body part.
Removes any headers with the specified name on this builder.
Removes any parameters with the specified name on this builder.
Sets the url of the request.