Méthode ExtensionMethods.FindVocabularyAnnotationsIncludingInheritedAnnotations
Obtient les annotations de glossaire d'un élément annotable définies dans un modèle spécifique et les modèles référencés par ce modèle.
Espace de noms : Microsoft.Data.Edm
Assembly : Microsoft.Data.Edm (en Microsoft.Data.Edm.dll)
Syntaxe
'Déclaration
<ExtensionAttribute> _
Public Shared Function FindVocabularyAnnotationsIncludingInheritedAnnotations ( _
model As IEdmModel, _
element As IEdmVocabularyAnnotatable _
) As IEnumerable(Of IEdmVocabularyAnnotation)
'Utilisation
Dim model As IEdmModel
Dim element As IEdmVocabularyAnnotatable
Dim returnValue As IEnumerable(Of IEdmVocabularyAnnotation)
returnValue = model.FindVocabularyAnnotationsIncludingInheritedAnnotations(element)
public static IEnumerable<IEdmVocabularyAnnotation> FindVocabularyAnnotationsIncludingInheritedAnnotations(
this IEdmModel model,
IEdmVocabularyAnnotatable element
)
[ExtensionAttribute]
public:
static IEnumerable<IEdmVocabularyAnnotation^>^ FindVocabularyAnnotationsIncludingInheritedAnnotations(
IEdmModel^ model,
IEdmVocabularyAnnotatable^ element
)
static member FindVocabularyAnnotationsIncludingInheritedAnnotations :
model:IEdmModel *
element:IEdmVocabularyAnnotatable -> IEnumerable<IEdmVocabularyAnnotation>
public static function FindVocabularyAnnotationsIncludingInheritedAnnotations(
model : IEdmModel,
element : IEdmVocabularyAnnotatable
) : IEnumerable<IEdmVocabularyAnnotation>
Paramètres
- model
Type : Microsoft.Data.Edm.IEdmModel
Modèle dans lequel effectuer la recherche.
- element
Type : Microsoft.Data.Edm.IEdmVocabularyAnnotatable
Élément dont les annotations sont vérifiées.
Valeur de retour
Type : System.Collections.Generic.IEnumerable<IEdmVocabularyAnnotation>
Annotations attachées à l'élément (ou, si l'élément est un type, à ses types de bases) par ce modèle ou par les modèles référencés par ce modèle.
Remarque relative à l'utilisation
En Visual Basic et C#, vous pouvez appeler cette méthode comme méthode d'instance sur tout objet de type IEdmModel. Lorsque vous utilisez la syntaxe de la méthode d'instance pour appeler cette méthode, omettez le premier paramètre. Pour plus d'informations, consultez https://msdn.microsoft.com/fr-fr/library/bb384936(v=vs.103) ou https://msdn.microsoft.com/fr-fr/library/bb383977(v=vs.103).