Enum LdValueType
Describes the type of a JSON value.
Namespace: LaunchDarkly.Sdk
Assembly: LaunchDarkly.CommonSdk.dll
Syntax
public enum LdValueType
Fields
Name | Description |
---|---|
Array | The value is an array. |
Bool | The value is a boolean. |
Null | The value is null. |
Number | The value is numeric. JSON does not have separate types for int and float, but you can convert to either. |
Object | The value is an object (a.k.a. hash or dictionary). |
String | The value is a string. |