6 references to String
Microsoft.Analyzers.Local (6)
ApiLifecycle\Json\JsonValue.cs (6)
76
Type = JsonValueType.
String
;
170
public bool IsString => Type == JsonValueType.
String
;
198
JsonValueType.
String
=> !string.IsNullOrEmpty((string?)_reference),
235
JsonValueType.
String
=> double.TryParse((string?)_reference, NumberStyles.Float, CultureInfo.InvariantCulture, out var number)
251
JsonValueType.
String
=> (string?)_reference,
284
JsonValueType.
String
or JsonValueType.Object or JsonValueType.Array => _reference,