| File: System\Composition\Hosting\Core\CompositeActivator.cs | Web Access |
| Project: src\runtime\src\libraries\System.Composition.Hosting\src\System.Composition.Hosting.csproj (System.Composition.Hosting) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace System.Composition.Hosting.Core { /// <summary> /// The delegate signature that allows instances of parts and exports to be accessed during /// a composition operation. /// </summary> /// <param name="context">The context in which the part or export is being accessed.</param> /// <param name="operation">The operation within which the activation is occurring.</param> /// <returns>The activated part or export.</returns> public delegate object CompositeActivator(LifetimeContext context, CompositionOperation operation); }