System\Text\Json\Serialization\Metadata\FSharpCoreReflectionProxy.cs (7)
249return CreateDelegate<Func<TFSharpOption, T>>(valueGetter);
258return CreateDelegate<Func<TElement?, TFSharpOption>>(methodInfo);
268return CreateDelegate<StructGetter<TFSharpValueOption, TElement>>(valueGetter);
277return CreateDelegate<Func<TElement?, TFSharpOption>>(methodInfo);
285return CreateDelegate<Func<IEnumerable<TElement>, TFSharpList>>(EnsureMemberExists(_fsharpListCtor, "Microsoft.FSharp.Collections.ListModule.OfSeq<T>(IEnumerable<T> source)").MakeGenericMethod(typeof(TElement)));
293return CreateDelegate<Func<IEnumerable<TElement>, TFSharpSet>>(EnsureMemberExists(_fsharpSetCtor, "Microsoft.FSharp.Collections.SetModule.OfSeq<T>(IEnumerable<T> source)").MakeGenericMethod(typeof(TElement)));
301return 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)));