aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2019-05-12 15:54:23 -0700
committerRob Mensching <rob@firegiant.com>2019-05-12 23:14:43 -0700
commita8b388110d2914c1ebf610dd624f710e9874baf4 (patch)
treea9e9bcb8eb449fbdc41c270ffbd70c2b22dfc8f3 /src
parent1050d19a80191ac2a2dd132c84a42e5246a3a452 (diff)
downloadwix-a8b388110d2914c1ebf610dd624f710e9874baf4.tar.gz
wix-a8b388110d2914c1ebf610dd624f710e9874baf4.tar.bz2
wix-a8b388110d2914c1ebf610dd624f710e9874baf4.zip
Rename IExtensionManager.Create to IExtensionManager.GetServices
Diffstat (limited to '')
-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}