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