10 references to DeclaredOnlyLookup
Microsoft.Extensions.Configuration.Binder (10)
ConfigurationBinder.cs (10)
692MethodInfo? addMethod = dictionaryType.GetMethod("Add", DeclaredOnlyLookup); 697addMethod = dictionaryType.GetMethod("Add", DeclaredOnlyLookup); 703PropertyInfo keyMethod = kvpType.GetProperty("Key", DeclaredOnlyLookup)!; 704PropertyInfo valueMethod = kvpType.GetProperty("Value", DeclaredOnlyLookup)!; 764MethodInfo tryGetValue = dictionaryType.GetMethod("TryGetValue", DeclaredOnlyLookup)!; 765PropertyInfo indexerProperty = dictionaryType.GetProperty("Item", DeclaredOnlyLookup)!; 814MethodInfo? addMethod = collectionType.GetMethod("Add", DeclaredOnlyLookup); 919MethodInfo? addMethod = type.GetMethod("Add", DeclaredOnlyLookup); 924addMethod = genericType.GetMethod("Add", DeclaredOnlyLookup); 1106PropertyInfo[] properties = baseType.GetProperties(DeclaredOnlyLookup);