Show / Hide Table of Contents

Class HTTPRequestArgs

Arguments for a WMHTTPRequest evaluation.

Inheritance
object
HTTPRequestArgs
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
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&amp;param2=val2 format.

Declaration
public Dictionary<string, string> QueryParameters { get; set; }
Property Value
Type Description
Dictionary<string, string>
In this article
Back to top Copyright © 2025 Quantellia LLC.    Version 2.0.0 Revision 399     Last Updated 1/15/2025    DRAFT DOCUMENTATION. SUBJECT TO CHANGE