10 references to DeclaredOnlyLookup
Microsoft.Extensions.Configuration.Binder (10)
ConfigurationBinder.cs (10)
649
MethodInfo? addMethod = dictionaryType.GetMethod("Add",
DeclaredOnlyLookup
);
654
addMethod = dictionaryType.GetMethod("Add",
DeclaredOnlyLookup
);
660
PropertyInfo keyMethod = kvpType.GetProperty("Key",
DeclaredOnlyLookup
)!;
661
PropertyInfo valueMethod = kvpType.GetProperty("Value",
DeclaredOnlyLookup
)!;
721
MethodInfo tryGetValue = dictionaryType.GetMethod("TryGetValue",
DeclaredOnlyLookup
)!;
722
PropertyInfo indexerProperty = dictionaryType.GetProperty("Item",
DeclaredOnlyLookup
)!;
771
MethodInfo? addMethod = collectionType.GetMethod("Add",
DeclaredOnlyLookup
);
876
MethodInfo? addMethod = type.GetMethod("Add",
DeclaredOnlyLookup
);
881
addMethod = genericType.GetMethod("Add",
DeclaredOnlyLookup
);
1057
PropertyInfo[] properties = baseType.GetProperties(
DeclaredOnlyLookup
);