aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/WixToolset.Extensibility/Services/IExtensionManager.cs11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/WixToolset.Extensibility/Services/IExtensionManager.cs b/src/WixToolset.Extensibility/Services/IExtensionManager.cs
index 32ee85a5..19b41e4f 100644
--- a/src/WixToolset.Extensibility/Services/IExtensionManager.cs
+++ b/src/WixToolset.Extensibility/Services/IExtensionManager.cs
@@ -1,4 +1,4 @@
1// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. 1// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
2 2
3namespace WixToolset.Extensibility.Services 3namespace WixToolset.Extensibility.Services
4{ 4{
@@ -29,12 +29,11 @@ namespace WixToolset.Extensibility.Services
29 /// </remarks> 29 /// </remarks>
30 void Load(string extensionPath); 30 void Load(string extensionPath);
31 31
32
33 /// <summary> 32 /// <summary>
34 /// Creates extension of specified type from factories loaded into the extension manager. 33 /// Gets extensions of specified type from factories loaded into the extension manager.
35 /// </summary> 34 /// </summary>
36 /// <typeparam name="T">Type of extension to create.</typeparam> 35 /// <typeparam name="T">Type of extension to get.</typeparam>
37 /// <returns>Extensions created of the specified type.</returns> 36 /// <returns>Extensions of the specified type.</returns>
38 IEnumerable<T> Create<T>() where T : class; 37 IEnumerable<T> GetServices<T>() where T : class;
39 } 38 }
40} 39}