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