10 references to DeclaredOnlyLookup
Microsoft.Extensions.Configuration.Binder (10)
ConfigurationBinder.cs (10)
698MethodInfo? addMethod = dictionaryType.GetMethod("Add", DeclaredOnlyLookup); 703addMethod = dictionaryType.GetMethod("Add", DeclaredOnlyLookup); 709PropertyInfo keyMethod = kvpType.GetProperty("Key", DeclaredOnlyLookup)!; 710PropertyInfo valueMethod = kvpType.GetProperty("Value", DeclaredOnlyLookup)!; 770MethodInfo tryGetValue = dictionaryType.GetMethod("TryGetValue", DeclaredOnlyLookup)!; 771PropertyInfo indexerProperty = dictionaryType.GetProperty("Item", DeclaredOnlyLookup)!; 820MethodInfo? addMethod = collectionType.GetMethod("Add", DeclaredOnlyLookup); 925MethodInfo? addMethod = type.GetMethod("Add", DeclaredOnlyLookup); 930addMethod = genericType.GetMethod("Add", DeclaredOnlyLookup); 1119PropertyInfo[] properties = baseType.GetProperties(DeclaredOnlyLookup);