10 references to DeclaredOnlyLookup
Microsoft.Extensions.Configuration.Binder (10)
ConfigurationBinder.cs (10)
689
MethodInfo? addMethod = dictionaryType.GetMethod("Add",
DeclaredOnlyLookup
);
694
addMethod = dictionaryType.GetMethod("Add",
DeclaredOnlyLookup
);
700
PropertyInfo keyMethod = kvpType.GetProperty("Key",
DeclaredOnlyLookup
)!;
701
PropertyInfo valueMethod = kvpType.GetProperty("Value",
DeclaredOnlyLookup
)!;
761
MethodInfo tryGetValue = dictionaryType.GetMethod("TryGetValue",
DeclaredOnlyLookup
)!;
762
PropertyInfo indexerProperty = dictionaryType.GetProperty("Item",
DeclaredOnlyLookup
)!;
811
MethodInfo? addMethod = collectionType.GetMethod("Add",
DeclaredOnlyLookup
);
916
MethodInfo? addMethod = type.GetMethod("Add",
DeclaredOnlyLookup
);
921
addMethod = genericType.GetMethod("Add",
DeclaredOnlyLookup
);
1107
PropertyInfo[] properties = baseType.GetProperties(
DeclaredOnlyLookup
);