8 references to Count
System.Text.Json (8)
System\Text\Json\JsonPropertyDictionary.KeyCollection.cs (1)
27public int Count => _parent.Count;
System\Text\Json\JsonPropertyDictionary.ValueCollection.cs (1)
27public int Count => _parent.Count;
System\Text\Json\Nodes\JsonObject.cs (3)
95_dictionary = new JsonPropertyDictionary<JsonNode?>(caseInsensitive, dictionary.Count) 175if (currentDict.Count != otherDict.Count)
System\Text\Json\Nodes\JsonObject.IDictionary.cs (1)
82public int Count => Dictionary.Count;
System\Text\Json\Serialization\Converters\Object\ObjectWithParameterizedConstructorConverter.cs (2)
344ArrayPool<FoundProperty>.Shared.Rent(Math.Max(1, state.Current.JsonTypeInfo.PropertyCache!.Count)); 540argumentState.FoundPropertiesAsync = ArrayPool<FoundPropertyAsync>.Shared.Rent(Math.Max(1, state.Current.JsonTypeInfo.PropertyCache!.Count));