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
Public Enumeration QueryFieldFormat
public enum class QueryFieldFormat
Members
| Member name | Value | Description |
---|
| PlainText | 0 |
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.)
|
| XmlUrlEncoded | 1 |
The data will be serialized to XML Format and UrlEncoded. (https://www.w3schools.com/tags/ref_urlencode.asp)
|
| XmlUrlEncoded_NoNamespace | 2 |
The data will be serialized to XML Format and UrlEncoded. All XML namespace will be removed.
|
| XmlBase64 | 3 |
The data will be serialized to XML Format and encoded in Base64 format.
|
| DateTimeIso8601 | 4 |
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