10 references to DeclaredOnlyLookup
Microsoft.Extensions.Configuration.Binder (10)
ConfigurationBinder.cs (10)
689MethodInfo? addMethod = dictionaryType.GetMethod("Add", DeclaredOnlyLookup); 694addMethod = dictionaryType.GetMethod("Add", DeclaredOnlyLookup); 700PropertyInfo keyMethod = kvpType.GetProperty("Key", DeclaredOnlyLookup)!; 701PropertyInfo valueMethod = kvpType.GetProperty("Value", DeclaredOnlyLookup)!; 761MethodInfo tryGetValue = dictionaryType.GetMethod("TryGetValue", DeclaredOnlyLookup)!; 762PropertyInfo indexerProperty = dictionaryType.GetProperty("Item", DeclaredOnlyLookup)!; 811MethodInfo? addMethod = collectionType.GetMethod("Add", DeclaredOnlyLookup); 916MethodInfo? addMethod = type.GetMethod("Add", DeclaredOnlyLookup); 921addMethod = genericType.GetMethod("Add", DeclaredOnlyLookup); 1107PropertyInfo[] properties = baseType.GetProperties(DeclaredOnlyLookup);