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