10 references to DeclaredOnlyLookup
Microsoft.Extensions.Configuration.Binder (10)
ConfigurationBinder.cs (10)
583MethodInfo? addMethod = dictionaryType.GetMethod("Add", DeclaredOnlyLookup); 588addMethod = dictionaryType.GetMethod("Add", DeclaredOnlyLookup); 594PropertyInfo keyMethod = kvpType.GetProperty("Key", DeclaredOnlyLookup)!; 595PropertyInfo valueMethod = kvpType.GetProperty("Value", DeclaredOnlyLookup)!; 655MethodInfo tryGetValue = dictionaryType.GetMethod("TryGetValue", DeclaredOnlyLookup)!; 656PropertyInfo indexerProperty = dictionaryType.GetProperty("Item", DeclaredOnlyLookup)!; 705MethodInfo? addMethod = collectionType.GetMethod("Add", DeclaredOnlyLookup); 810MethodInfo? addMethod = type.GetMethod("Add", DeclaredOnlyLookup); 815addMethod = genericType.GetMethod("Add", DeclaredOnlyLookup); 991PropertyInfo[] properties = baseType.GetProperties(DeclaredOnlyLookup);