9 references to TryGetValueDelegate
Microsoft.AspNetCore.Mvc.ViewFeatures (9)
TryGetValueProvider.cs (8)
15
private static readonly Dictionary<Type,
TryGetValueDelegate
> _tryGetValueDelegateCache =
16
new 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>
28
public static
TryGetValueDelegate
CreateInstance(Type targetType)
32
TryGetValueDelegate
result;
61
result = (
TryGetValueDelegate
)implementationMethod.CreateDelegate(typeof(
TryGetValueDelegate
));
ViewDataEvaluator.cs (1)
167
var
tryDelegate = TryGetValueProvider.CreateInstance(indexableObject.GetType());