7 references to GetArgumentDictionary
Microsoft.AspNetCore.Mvc.ViewFeatures (1)
ViewComponents\DefaultViewComponentHelper.cs (1)
131var argumentDictionary = GetArgumentDictionary(descriptor, arguments);
Microsoft.AspNetCore.Mvc.ViewFeatures.Test (6)
ViewComponents\DefaultViewComponentHelperTest.cs (6)
22var argumentDictionary = DefaultViewComponentHelper.GetArgumentDictionary(descriptor, null); 37var argumentDictionary = DefaultViewComponentHelper.GetArgumentDictionary(descriptor, new { a = 0 }); 57var argumentDictionary = DefaultViewComponentHelper.GetArgumentDictionary(descriptor, 0); 77var argumentDictionary = DefaultViewComponentHelper.GetArgumentDictionary(descriptor, new { a = 0, b = "foo" }); 104var argumentDictionary = DefaultViewComponentHelper.GetArgumentDictionary(descriptor, expectedValue); 128var argumentDictionary = DefaultViewComponentHelper.GetArgumentDictionary(descriptor, arguments);