IReadOnlyAnnotatable 接口

定义

支持批注的类。 批注允许将任意元数据存储在对象上。

此接口通常由数据库提供程序 (和其他扩展) 使用。 它通常不在应用程序代码中使用。

public interface IReadOnlyAnnotatable
type IReadOnlyAnnotatable = interface
Public Interface IReadOnlyAnnotatable
派生

注解

有关详细信息 和示例,请参阅数据库提供程序和扩展的实现

属性

Item[String]

获取具有给定名称的批注的值,如果不存在,则返回 null 该值。

方法

AnnotationsToDebugString(Int32)

获取对象上声明的所有注释的调试字符串。

FindAnnotation(String)

获取具有给定名称的批注,如果不存在,则返回 null

GetAnnotation(String)

获取具有给定名称的批注,如果不存在,则引发该批注。

GetAnnotations()

获取当前对象上的所有批注。

适用于