25 references to LifecycleProperty
Microsoft.AspNetCore.Mvc.RazorPages.Test (6)
Filters\PageSaveTempDataPropertyFilterFactoryTest.cs (1)
19var lifecycleProperties = new[] { new LifecycleProperty(property, "key") };
Filters\PageSaveTempDataPropertyFilterTest.cs (2)
205new LifecycleProperty(property1, prefix + property1.Name), 206new LifecycleProperty(property2, prefix + property2.Name),
Filters\PageViewDataAttributeFilterTest.cs (3)
61new LifecycleProperty(type.GetProperty(nameof(TestModel.Prop1)), "Prop1"), 62new LifecycleProperty(type.GetProperty(nameof(TestModel.Prop2)), "Prop2"), 63new LifecycleProperty(type.GetProperty(nameof(TestModel.Prop3)), "Prop3"),
Microsoft.AspNetCore.Mvc.ViewFeatures (2)
Filters\SaveTempDataPropertyFilterBase.cs (1)
108results.Add(new LifecycleProperty(property, key));
Filters\ViewDataAttributePropertyProvider.cs (1)
35results.Add(new LifecycleProperty(property, key));
Microsoft.AspNetCore.Mvc.ViewFeatures.Test (17)
Filters\ControllerSaveTempDataPropertyFilterFactoryTest.cs (1)
16var lifecycleProperties = new[] { new LifecycleProperty(property, "key") };
Filters\ControllerSaveTempDataPropertyFilterTest.cs (8)
34new LifecycleProperty(property1, "TempDataProperty-Test"), 35new LifecycleProperty(property1, "TempDataProperty-Test2"), 80new LifecycleProperty(property1, "TempDataProperty-Test"), 81new LifecycleProperty(property2, "TempDataProperty-Test2"), 123new LifecycleProperty(property1, "Test"), 124new LifecycleProperty(property2, "Test2"), 162new LifecycleProperty(property1, "Test"), 163new LifecycleProperty(property2, "Test2"),
Filters\ControllerViewDataAttributeFilterTest.cs (3)
56new LifecycleProperty(type.GetProperty(nameof(TestController.Prop1)), "Prop1"), 57new LifecycleProperty(type.GetProperty(nameof(TestController.Prop2)), "Prop2"), 58new LifecycleProperty(type.GetProperty(nameof(TestController.Prop3)), "Prop3"),
Filters\LifecyclePropertyTest.cs (5)
13var lifecycleProperty = new LifecycleProperty(propertyInfo, "test-key"); 28var lifecycleProperty = new LifecycleProperty(propertyInfo, "test-key"); 43var lifecycleProperty = new LifecycleProperty(propertyInfo, "test-key"); 58var lifecycleProperty = new LifecycleProperty(propertyInfo, "test-key"); 73var lifecycleProperty = new LifecycleProperty(propertyInfo, "test-key");