File tree Expand file tree Collapse file tree 3 files changed +4
-6
lines changed
Expand file tree Collapse file tree 3 files changed +4
-6
lines changed Original file line number Diff line number Diff line change 11// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.
22
33using System . Reflection ;
4- using Unity . Policy ;
54
65namespace Unity . Builder . Selection
76{
87 /// <summary>
9- /// Objects of this type are the return value from <see cref="IConstructorSelectorPolicy.SelectConstructor"/>.
8+ /// Objects of this type are the return value from
9+ /// <see cref="Unity.Policy.IConstructorSelectorPolicy.SelectConstructor"/>.
1010 /// It encapsulates the desired <see cref="ConstructorInfo"/> with the string keys
1111 /// needed to look up the <see cref="IResolverPolicy"/> for each
1212 /// parameter.
Original file line number Diff line number Diff line change 11// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.
22
33using System . Collections . Generic ;
4- using System . Reflection ;
54using Unity . Builder ;
65using Unity . Builder . Selection ;
76
87namespace Unity . Policy
98{
109 /// <summary>
1110 /// An <see cref="IBuilderPolicy"/> that will examine the given
12- /// types and return a sequence of <see cref="MethodInfo"/> objects
11+ /// types and return a sequence of <see cref="System.Reflection. MethodInfo"/> objects
1312 /// that should be called as part of building the object.
1413 /// </summary>
1514 public interface IMethodSelectorPolicy : IBuilderPolicy
Original file line number Diff line number Diff line change 11// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.
22
33using System . Collections . Generic ;
4- using System . Reflection ;
54using Unity . Builder ;
65using Unity . Builder . Selection ;
76
@@ -20,7 +19,7 @@ public interface IPropertySelectorPolicy : IBuilderPolicy
2019 /// <param name="context">Current build context.</param>
2120 /// <param name="resolverPolicyDestination">The <see cref='IPolicyList'/> to add any
2221 /// generated resolver objects into.</param>
23- /// <returns>Sequence of <see cref="PropertyInfo"/> objects
22+ /// <returns>Sequence of <see cref="System.Reflection. PropertyInfo"/> objects
2423 /// that contain the properties to set.</returns>
2524 IEnumerable < SelectedProperty > SelectProperties ( IBuilderContext context , IPolicyList resolverPolicyDestination ) ;
2625 }
You can’t perform that action at this time.
0 commit comments