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