Class HTTPRequestArgs
Arguments for a WMHTTPRequest evaluation.
Inherited Members
Namespace: Quantellia.WMServer.Asset.Model.HTTP.Request
Assembly: WMServer.dll
Syntax
public class HTTPRequestArgs
Properties
Content
The content of this request. Supports plaintext and json.
Declaration
public object? Content { get; set; }
Property Value
Type | Description |
---|---|
object |
MediaType
The media type of this request. application/json by default.
Declaration
public string MediaType { get; set; }
Property Value
Type | Description |
---|---|
string |
PathParameters
Parameters added to the body of the URI in a /path/to/resource/@resourceID => /path/to/resource/12345-abcde format.
Declaration
public Dictionary<string, string> PathParameters { get; set; }
Property Value
Type | Description |
---|---|
Dictionary<string, string> |
QueryParameters
Parameters added to the end of the URI in a ?@param1=val1&param2=val2 format.
Declaration
public Dictionary<string, string> QueryParameters { get; set; }
Property Value
Type | Description |
---|---|
Dictionary<string, string> |