9 references to TryGetValueDelegate
Microsoft.AspNetCore.Mvc.ViewFeatures (9)
TryGetValueProvider.cs (8)
15private static readonly Dictionary<Type, TryGetValueDelegate> _tryGetValueDelegateCache = 16new Dictionary<Type, TryGetValueDelegate>(); 24/// Returns a <see cref="TryGetValueDelegate"/> for the specified <see cref="IDictionary{TKey, TValue}"/> type. 27/// <returns>The <see cref="TryGetValueDelegate"/>.</returns> 28public static TryGetValueDelegate CreateInstance(Type targetType) 32TryGetValueDelegate result; 61result = (TryGetValueDelegate)implementationMethod.CreateDelegate(typeof(TryGetValueDelegate));
ViewDataEvaluator.cs (1)
167var tryDelegate = TryGetValueProvider.CreateInstance(indexableObject.GetType());