18 references to ObjectType
System.Text.Json (18)
System\Text\Json\Serialization\Converters\Object\ObjectConverterFactory.cs (1)
64Type placeHolderType = JsonTypeInfo.ObjectType;
System\Text\Json\Serialization\JsonSerializer.Helpers.cs (1)
42return inputType == JsonTypeInfo.ObjectType
System\Text\Json\Serialization\JsonSerializer.Read.HandlePropertyName.cs (1)
127genericArgs[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)
953if (type == JsonTypeInfo.ObjectType)
System\Text\Json\Serialization\Metadata\DefaultJsonTypeInfoResolver.Helpers.cs (1)
104if (currentType == JsonTypeInfo.ObjectType ||
System\Text\Json\Serialization\Metadata\JsonMetadataServices.Helpers.cs (1)
132Debug.Assert(typeInfo.Type != JsonTypeInfo.ObjectType);
System\Text\Json\Serialization\Metadata\JsonPropertyInfo.cs (3)
633potentialNumberType == JsonTypeInfo.ObjectType; 784object value = converter.Read(ref reader, JsonTypeInfo.ObjectType, Options)!; 825if (JsonTypeInfo.ElementType == JsonTypeInfo.ObjectType && reader.TokenType == JsonTokenType.Null)
System\Text\Json\Serialization\Metadata\PolymorphicTypeResolver.cs (1)
173type != JsonTypeInfo.ObjectType;
System\Text\Json\Serialization\Metadata\ReflectionEmitMemberAccessor.cs (4)
40JsonTypeInfo.ObjectType, 176new[] { collectionType, JsonTypeInfo.ObjectType }, 401new[] { JsonTypeInfo.ObjectType }, 411new[] { JsonTypeInfo.ObjectType, memberType },
System\Text\Json\Serialization\Metadata\ReflectionMemberAccessor.cs (1)
120Type elementType = JsonTypeInfo.ObjectType;