Rename WeightAttribute, change default to 100, cleanup

This commit is contained in:
Stephan
2016-11-24 18:13:05 +01:00
parent ed37b84b3b
commit 0179540023
9 changed files with 15 additions and 44 deletions

View File

@@ -17,7 +17,7 @@ namespace Umbraco.Core.ObjectResolution
/// for when there is some processing overhead (i.e. Type finding in assemblies) to return the Types used to instantiate the instances.
/// In some these cases we don't want to have to type-find during application startup, only when we need to resolve the instances.</para>
/// <para>Important notes about this resolver: it does not support Insert or Remove and therefore does not support any ordering unless
/// the types are marked with the WeightedPluginAttribute.</para>
/// the types are marked with the WeightAttribute.</para>
/// </remarks>
public abstract class LazyManyObjectsResolverBase<TResolver, TResolved> : ManyObjectsResolverBase<TResolver, TResolved>
where TResolved : class