7 references to CreateDelegate
System.Text.Json (7)
System\Text\Json\Serialization\Metadata\FSharpCoreReflectionProxy.cs (7)
151return CreateDelegate<Func<TFSharpOption, T>>(valueGetter); 160return CreateDelegate<Func<TElement?, TFSharpOption>>(methodInfo); 170return CreateDelegate<StructGetter<TFSharpValueOption, TElement>>(valueGetter); 179return CreateDelegate<Func<TElement?, TFSharpOption>>(methodInfo); 187return CreateDelegate<Func<IEnumerable<TElement>, TFSharpList>>(EnsureMemberExists(_fsharpListCtor, "Microsoft.FSharp.Collections.ListModule.OfSeq<T>(IEnumerable<T> source)").MakeGenericMethod(typeof(TElement))); 195return CreateDelegate<Func<IEnumerable<TElement>, TFSharpSet>>(EnsureMemberExists(_fsharpSetCtor, "Microsoft.FSharp.Collections.SetModule.OfSeq<T>(IEnumerable<T> source)").MakeGenericMethod(typeof(TElement))); 203return CreateDelegate<Func<IEnumerable<Tuple<TKey, TValue>>, TFSharpMap>>(EnsureMemberExists(_fsharpMapCtor, "Microsoft.FSharp.Collections.MapModule.OfSeq<TKey, TValue>(IEnumerable<Tuple<TKey, TValue>> source)").MakeGenericMethod(typeof(TKey), typeof(TValue)));