Edit

ExportLifetimeContext<T> Class

Definition

Holds an exported value created by an ExportFactory<T> object and a reference to a method to release that object.

generic <typename T>
public ref class ExportLifetimeContext sealed : IDisposable
public sealed class ExportLifetimeContext<T> : IDisposable
type ExportLifetimeContext<'T> = class
    interface IDisposable
Public NotInheritable Class ExportLifetimeContext(Of T)
Implements IDisposable

Type Parameters

T

The type of the exported value.

Inheritance
ExportLifetimeContext<T>
Implements

Remarks

Important

This type implements the IDisposable interface. When you have finished using the type, you should dispose of it either directly or indirectly. To dispose of the type directly, call its Dispose method in a try/catch block. To dispose of it indirectly, use a language construct such as using (in C#) or Using (in Visual Basic). For more information, see the "Using an Object that Implements IDisposable" section in the IDisposable interface topic.

Constructors

Name Description
ExportLifetimeContext<T>(T, Action)

Initializes a new instance of the ExportLifetimeContext<T> class.

Properties

Name Description
Value

Gets the exported value of a ExportFactory<T> object.

Methods

Name Description
Dispose()

Releases all resources used by the current instance of the ExportLifetimeContext<T> class, including its associated export.

Applies to