ExportLifetimeContext<T> Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
ExportLifetimeContext<T>(T, Action) |
Initializes a new instance of the ExportLifetimeContext<T> class. |
Properties
Value |
Gets the exported value of a ExportFactory<T> object. |
Methods
Dispose() |
Releases all resources used by the current instance of the ExportLifetimeContext<T> class, including its associated export. |
Equals(Object) |
Determines whether the specified object is equal to the current object. (Inherited from Object) |
GetHashCode() |
Serves as the default hash function. (Inherited from Object) |
GetType() |
Gets the Type of the current instance. (Inherited from Object) |
MemberwiseClone() |
Creates a shallow copy of the current Object. (Inherited from Object) |
ToString() |
Returns a string that represents the current object. (Inherited from Object) |