2 writes to Properties
Microsoft.AspNetCore.Mvc.Core (2)
ApplicationModels\ParameterModelBase.cs (2)
28Properties = new Dictionary<object, object?>(); 43Properties = new Dictionary<object, object?>(other.Properties);
4 references to Properties
Microsoft.AspNetCore.Mvc.Core (3)
ApplicationModels\ParameterModel.cs (1)
50public new IDictionary<object, object?> Properties => base.Properties;
ApplicationModels\ParameterModelBase.cs (1)
43Properties = new Dictionary<object, object?>(other.Properties);
ApplicationModels\PropertyModel.cs (1)
51public new IDictionary<object, object?> Properties => base.Properties;
Microsoft.AspNetCore.Mvc.Core.Test (1)
DependencyInjection\ApplicationModelConventionExtensionsTest.cs (1)
442action.Properties.Add("TestProperty", "TestValue");