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