7 writes to CreateObjectWithArgs
System.Text.Json (7)
System\Text\Json\Serialization\Converters\Collection\ImmutableDictionaryOfTKeyTValueConverterWithReflection.cs (1)
26
jsonTypeInfo.
CreateObjectWithArgs
= DefaultJsonTypeInfoResolver.MemberAccessor.CreateImmutableDictionaryCreateRangeDelegate<TCollection, TKey, TValue>();
System\Text\Json\Serialization\Converters\Collection\ImmutableEnumerableOfTConverterWithReflection.cs (1)
25
jsonTypeInfo.
CreateObjectWithArgs
= DefaultJsonTypeInfoResolver.MemberAccessor.CreateImmutableEnumerableCreateRangeDelegate<TCollection, TElement>();
System\Text\Json\Serialization\Converters\Object\ObjectWithParameterizedConstructorConverter.Large.Reflection.cs (1)
27
jsonTypeInfo.
CreateObjectWithArgs
= DefaultJsonTypeInfoResolver.MemberAccessor.CreateParameterizedConstructor<T>(ConstructorInfo!);
System\Text\Json\Serialization\Converters\Object\ObjectWithParameterizedConstructorConverter.Small.cs (1)
126
jsonTypeInfo.
CreateObjectWithArgs
= DefaultJsonTypeInfoResolver.MemberAccessor.CreateParameterizedConstructor<T, TArg0, TArg1, TArg2, TArg3>(ConstructorInfo!);
System\Text\Json\Serialization\Metadata\JsonMetadataServices.Helpers.cs (2)
38
typeInfo.
CreateObjectWithArgs
= objectInfo.ObjectWithParameterizedConstructorCreator;
94
typeInfo.
CreateObjectWithArgs
= createObjectWithArgs;
System\Text\Json\Serialization\Metadata\JsonTypeInfoOfT.cs (1)
108
CreateObjectWithArgs
= null;
7 references to CreateObjectWithArgs
System.Text.Json (7)
System\Text\Json\Serialization\Converters\Collection\ImmutableDictionaryOfTKeyTValueConverter.cs (1)
32
(Func<IEnumerable<KeyValuePair<TKey, TValue>>, TDictionary>?)state.Current.JsonTypeInfo.
CreateObjectWithArgs
;
System\Text\Json\Serialization\Converters\Collection\ImmutableEnumerableOfTConverter.cs (1)
32
Func<IEnumerable<TElement>, TCollection>? creator = (Func<IEnumerable<TElement>, TCollection>?)typeInfo.
CreateObjectWithArgs
;
System\Text\Json\Serialization\Converters\Object\ObjectWithParameterizedConstructorConverter.Large.cs (2)
39
Debug.Assert(frame.JsonTypeInfo.
CreateObjectWithArgs
!= null);
44
Func<object[], T> createObject = (Func<object[], T>)frame.JsonTypeInfo.
CreateObjectWithArgs
;
System\Text\Json\Serialization\Converters\Object\ObjectWithParameterizedConstructorConverter.Small.cs (2)
20
frame.JsonTypeInfo.
CreateObjectWithArgs
!;
93
Debug.Assert(typeInfo.
CreateObjectWithArgs
!= null);
System\Text\Json\Serialization\Metadata\JsonTypeInfoOfT.cs (1)
105
if (
CreateObjectWithArgs
is not null)