6 instantiations of PropertyActivator
Microsoft.AspNetCore.Shared.Tests (6)
PropertyActivatorTest.cs (6)
20var activator = new PropertyActivator<int>( 42var activator = new PropertyActivator<int>(property, valueAccessor: (val) => val + 1); 64(propertyInfo) => new PropertyActivator<int>(propertyInfo, valueAccessor: (val) => val + 1)); 88(propertyInfo) => new PropertyActivator<int>(expectedPropertyInfo, valueAccessor: (val) => val + 1)); 111(propertyInfo) => new PropertyActivator<int>(propertyInfo, valueAccessor: (val) => val)); 129(propertyInfo) => new PropertyActivator<int>(propertyInfo, valueAccessor: (val) => val),
12 references to PropertyActivator
Microsoft.AspNetCore.Shared.Tests (12)
PropertyActivatorTest.cs (6)
20var activator = new PropertyActivator<int>( 42var activator = new PropertyActivator<int>(property, valueAccessor: (val) => val + 1); 60var propertiesToActivate = PropertyActivator<int>.GetPropertiesToActivate( 84var propertiesToActivate = PropertyActivator<int>.GetPropertiesToActivate( 108var propertiesToActivate = PropertyActivator<int>.GetPropertiesToActivate( 126var propertiesToActivate = PropertyActivator<int>.GetPropertiesToActivate(
src\Shared\PropertyActivator\PropertyActivator.cs (6)
37public static PropertyActivator<TContext>[] GetPropertiesToActivate( 40Func<PropertyInfo, PropertyActivator<TContext>> createActivateInfo) 49public static PropertyActivator<TContext>[] GetPropertiesToActivate( 52Func<PropertyInfo, PropertyActivator<TContext>> createActivateInfo, 63public static PropertyActivator<TContext>[] GetPropertiesToActivate<TAttribute>( 65Func<PropertyInfo, TAttribute, PropertyActivator<TContext>> createActivateInfo,