ModelElement.GetAnnotations<TType> 方法 (ModelIdentifier)
获取附加到指定元素且其类型与所提供的 Type 匹配的批注的列表。
命名空间: Microsoft.Data.Schema.SchemaModel
程序集: Microsoft.Data.Schema(在 Microsoft.Data.Schema.dll 中)
语法
声明
Public Function GetAnnotations(Of TType As {Class, IModelAnnotation}) ( _
identifier As ModelIdentifier _
) As IList(Of TType)
public IList<TType> GetAnnotations<TType>(
ModelIdentifier identifier
)
where TType : class, IModelAnnotation
public:
generic<typename TType>
where TType : ref class, IModelAnnotation
virtual IList<TType>^ GetAnnotations(
ModelIdentifier^ identifier
) sealed
abstract GetAnnotations :
identifier:ModelIdentifier -> IList<'TType> when 'TType : not struct and IModelAnnotation
override GetAnnotations :
identifier:ModelIdentifier -> IList<'TType> when 'TType : not struct and IModelAnnotation
JScript 不支持泛型类型或方法。
类型参数
- TType
一个从 IModelAnnotation 继承的 Type。
参数
- identifier
类型:Microsoft.Data.Schema.SchemaModel.ModelIdentifier
一个 ModelIdentifier 对象,用于标识元素。
返回值
类型:System.Collections.Generic.IList<TType>
一个 TType 类型的 IList<T>。
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。