18 references to ObjectType
System.Text.Json (18)
System\Text\Json\Serialization\Converters\Object\ObjectConverterFactory.cs (1)
70Type placeHolderType = JsonTypeInfo.ObjectType;
System\Text\Json\Serialization\JsonSerializer.Helpers.cs (1)
43return inputType == JsonTypeInfo.ObjectType
System\Text\Json\Serialization\JsonSerializer.Read.HandlePropertyName.cs (1)
124genericArgs[1].UnderlyingSystemType == JsonTypeInfo.ObjectType ||
System\Text\Json\Serialization\JsonSerializerOptions.Caching.cs (3)
170if (runtimeType != JsonTypeInfo.ObjectType) 194return _objectTypeInfo ??= GetTypeInfoInternal(JsonTypeInfo.ObjectType); 311if (current == JsonTypeInfo.ObjectType)
System\Text\Json\Serialization\JsonSerializerOptions.cs (1)
1010if (type == JsonTypeInfo.ObjectType)
System\Text\Json\Serialization\Metadata\DefaultJsonTypeInfoResolver.Helpers.cs (1)
110if (currentType == JsonTypeInfo.ObjectType ||
System\Text\Json\Serialization\Metadata\JsonMetadataServices.Helpers.cs (1)
138Debug.Assert(typeInfo.Type != JsonTypeInfo.ObjectType);
System\Text\Json\Serialization\Metadata\JsonPropertyInfo.cs (3)
733potentialNumberType == JsonTypeInfo.ObjectType; 865object value = converter.Read(ref reader, JsonTypeInfo.ObjectType, Options)!; 906if (JsonTypeInfo.ElementType == JsonTypeInfo.ObjectType && reader.TokenType == JsonTokenType.Null)
System\Text\Json\Serialization\Metadata\PolymorphicTypeResolver.cs (1)
191type != JsonTypeInfo.ObjectType;
System\Text\Json\Serialization\Metadata\ReflectionEmitMemberAccessor.cs (4)
38JsonTypeInfo.ObjectType, 168new[] { collectionType, JsonTypeInfo.ObjectType }, 383new[] { JsonTypeInfo.ObjectType }, 391new[] { JsonTypeInfo.ObjectType, memberType },
System\Text\Json\Serialization\Metadata\ReflectionMemberAccessor.cs (1)
118Type elementType = JsonTypeInfo.ObjectType;