Click or drag to resize

QueryFieldFormat Enumeration

Describes how the a Query Field variable is formatted.

Namespace:  Hummingbird.TestFramework.Services
Assembly:  Hummingbird.TestFramework (in Hummingbird.TestFramework.dll) Version: 1.2.0.0
Syntax
public enum QueryFieldFormat
Members
  Member nameValueDescription
PlainText0 The data is evaluated as plain text. (Attention, if the data type is Date/Time or numeric value type, it will be converted to local language format.)
XmlUrlEncoded1 The data will be serialized to XML Format and UrlEncoded. (https://www.w3schools.com/tags/ref_urlencode.asp)
XmlUrlEncoded_NoNamespace2 The data will be serialized to XML Format and UrlEncoded. All XML namespace will be removed.
XmlBase643 The data will be serialized to XML Format and encoded in Base64 format.
DateTimeIso86014 The data of DateTime type will be transformed to the ISO8601 Date Time format. (Attention: Make sure the attribute is attached to an DateTime value, or an acceptable DateTime string.)
See Also