10 references to DeclaredOnlyLookup
Microsoft.Extensions.Configuration.Binder (10)
ConfigurationBinder.cs (10)
688
MethodInfo? addMethod = dictionaryType.GetMethod("Add",
DeclaredOnlyLookup
);
693
addMethod = dictionaryType.GetMethod("Add",
DeclaredOnlyLookup
);
699
PropertyInfo keyMethod = kvpType.GetProperty("Key",
DeclaredOnlyLookup
)!;
700
PropertyInfo valueMethod = kvpType.GetProperty("Value",
DeclaredOnlyLookup
)!;
760
MethodInfo tryGetValue = dictionaryType.GetMethod("TryGetValue",
DeclaredOnlyLookup
)!;
761
PropertyInfo indexerProperty = dictionaryType.GetProperty("Item",
DeclaredOnlyLookup
)!;
810
MethodInfo? addMethod = collectionType.GetMethod("Add",
DeclaredOnlyLookup
);
915
MethodInfo? addMethod = type.GetMethod("Add",
DeclaredOnlyLookup
);
920
addMethod = genericType.GetMethod("Add",
DeclaredOnlyLookup
);
1109
PropertyInfo[] properties = baseType.GetProperties(
DeclaredOnlyLookup
);