ParameterType Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Parameter type. This type is used to determine the type of Parameter and is associated to corresponded Json token when serializing/deserializing.
public enum ParameterType
type ParameterType =
Public Enum ParameterType
- Inheritance
-
ParameterType
Fields
Name | Value | Description |
---|---|---|
Integer | 0 | Json int type. |
Number | 1 | Json number type. |
Bool | 2 | Json boolean type. |
String | 3 | Json string type. |
Object | 4 | Json object type. |
Array | 5 | Json array type. |