ExportLifetimeContext<T> 类

定义

保存 ExportFactory<T> 对象所创建的某个导出值和对方法的引用,以释放该对象。

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

类型参数

T

导出值的类型。

继承
ExportLifetimeContext<T>
实现

注解

重要

此类型实现 IDisposable 接口。 在使用完类型后,您应直接或间接释放类型。 若要直接释放类型,请在 try/catch 块中调用其 Dispose 方法。 若要间接释放类型,请使用 using(在 C# 中)或 Using(在 Visual Basic 中)等语言构造。 有关详细信息,请参阅 IDisposable 接口主题中的“使用实现 IDisposable 的对象”一节。

构造函数

ExportLifetimeContext<T>(T, Action)

初始化 ExportLifetimeContext<T> 类的新实例。

属性

Value

获取导出 ExportFactory<T> 对象的导出值。

方法

Dispose()

释放由 ExportLifetimeContext<T> 类的当前实例占用的所有资源,包括其关联导出。

Equals(Object)

确定指定对象是否等于当前对象。

(继承自 Object)
GetHashCode()

作为默认哈希函数。

(继承自 Object)
GetType()

获取当前实例的 Type

(继承自 Object)
MemberwiseClone()

创建当前 Object 的浅表副本。

(继承自 Object)
ToString()

返回表示当前对象的字符串。

(继承自 Object)

适用于