1 write to Subject
Microsoft.AspNetCore.Mvc.ViewFeatures (1)
Filters\ControllerSaveTempDataPropertyFilter.cs (1)
22Subject = context.Controller;
7 references to Subject
Microsoft.AspNetCore.Mvc.ViewFeatures (7)
Filters\SaveTempDataPropertyFilterBase.cs (7)
21/// Describes the temp data properties which exist on <see cref="Subject"/> 36/// Puts the modified values of <see cref="Subject"/> into <paramref name="tempData"/>. 41if (Subject == null) 51var newValue = property.GetValue(Subject); 60/// Sets the values of the properties of <see cref="Subject"/> from <paramref name="tempData"/>. 70Debug.Assert(Subject != null, "Subject must be set before this method is invoked."); 78property.SetValue(Subject, value);