10 references to DeclaredOnlyLookup
Microsoft.Extensions.Configuration.Binder (10)
ConfigurationBinder.cs (10)
692
MethodInfo? addMethod = dictionaryType.GetMethod("Add",
DeclaredOnlyLookup
);
697
addMethod = dictionaryType.GetMethod("Add",
DeclaredOnlyLookup
);
703
PropertyInfo keyMethod = kvpType.GetProperty("Key",
DeclaredOnlyLookup
)!;
704
PropertyInfo valueMethod = kvpType.GetProperty("Value",
DeclaredOnlyLookup
)!;
764
MethodInfo tryGetValue = dictionaryType.GetMethod("TryGetValue",
DeclaredOnlyLookup
)!;
765
PropertyInfo indexerProperty = dictionaryType.GetProperty("Item",
DeclaredOnlyLookup
)!;
814
MethodInfo? addMethod = collectionType.GetMethod("Add",
DeclaredOnlyLookup
);
919
MethodInfo? addMethod = type.GetMethod("Add",
DeclaredOnlyLookup
);
924
addMethod = genericType.GetMethod("Add",
DeclaredOnlyLookup
);
1106
PropertyInfo[] properties = baseType.GetProperties(
DeclaredOnlyLookup
);