ParameterType Enumeration |
Type of the Parameter used by a Service
Namespace:
Hummingbird.TestFramework.Services
Assembly:
Hummingbird.TestFramework (in Hummingbird.TestFramework.dll) Version: 1.2.0.0
Syntax [SerializableAttribute]
public enum ParameterType
<SerializableAttribute>
Public Enumeration ParameterType
[SerializableAttribute]
public enum class ParameterType
[<SerializableAttribute>]
type ParameterType
Members
| Member name | Value | Description |
---|
| Integer | 0 |
The integer
|
| Boolean | 1 |
The boolean
|
| Float | 2 |
The float
|
| Double | 3 |
The double
|
| DateTime | 4 |
The date time
|
| String | 5 |
The string
|
| Password | 6 |
The password - an encrypted character sequences. for example, the protection password for private key of a SSL Certificate.
|
| IpAddress | 7 |
The ip address - when a parameter is type of IpAddress, Hummingbird Test Framework will populate all available IP Address of the current machine.
|
| Path | 8 |
The path - represents a path of a directory.
|
| File | 9 |
The file - Represents a absolute path of a file
|
| Enumeration | 10 |
The enumeration
|
See Also