19 references to ObjectType
System.Text.Json (19)
System\Text\Json\Serialization\Converters\Object\ObjectConverterFactory.cs (1)
84Type placeHolderType = JsonTypeInfo.ObjectType;
System\Text\Json\Serialization\JsonSerializer.Helpers.cs (1)
45return inputType == JsonTypeInfo.ObjectType
System\Text\Json\Serialization\JsonSerializer.Read.HandlePropertyName.cs (1)
132genericArgs[1].UnderlyingSystemType == JsonTypeInfo.ObjectType ||
System\Text\Json\Serialization\JsonSerializerOptions.Caching.cs (3)
194if (runtimeType != JsonTypeInfo.ObjectType) 218return _objectTypeInfo ??= GetTypeInfoInternal(JsonTypeInfo.ObjectType); 335if (current == JsonTypeInfo.ObjectType)
System\Text\Json\Serialization\JsonSerializerOptions.cs (1)
1048if (type == JsonTypeInfo.ObjectType)
System\Text\Json\Serialization\Metadata\DefaultJsonTypeInfoResolver.Helpers.cs (1)
141if (currentType == JsonTypeInfo.ObjectType ||
System\Text\Json\Serialization\Metadata\JsonMetadataServices.Helpers.cs (1)
167Debug.Assert(typeInfo.Type != JsonTypeInfo.ObjectType);
System\Text\Json\Serialization\Metadata\JsonPropertyInfo.cs (3)
733potentialNumberType == JsonTypeInfo.ObjectType; 862object value = converter.Read(ref reader, JsonTypeInfo.ObjectType, Options)!; 927if (JsonTypeInfo.ElementType == JsonTypeInfo.ObjectType && reader.TokenType == JsonTokenType.Null)
System\Text\Json\Serialization\Metadata\PolymorphicTypeResolver.cs (1)
213type != JsonTypeInfo.ObjectType;
System\Text\Json\Serialization\Metadata\ReflectionEmitMemberAccessor.cs (5)
38JsonTypeInfo.ObjectType, 201new[] { JsonTypeInfo.ObjectType }, 347new[] { collectionType, JsonTypeInfo.ObjectType }, 700new[] { JsonTypeInfo.ObjectType }, 716new[] { JsonTypeInfo.ObjectType, memberType },
System\Text\Json\Serialization\Metadata\ReflectionMemberAccessor.cs (1)
139Type elementType = JsonTypeInfo.ObjectType;