ExtensionMethods.VocabularyAnnotations Método
Obtiene las anotaciones de vocabulario de un elemento Annotatable tal y como se ven desde un modelo determinado.
Espacio de nombres: Microsoft.Data.Edm
Ensamblado: Microsoft.Data.Edm (en Microsoft.Data.Edm.dll)
Sintaxis
'Declaración
<ExtensionAttribute> _
Public Shared Function VocabularyAnnotations ( _
element As IEdmVocabularyAnnotatable, _
model As IEdmModel _
) As IEnumerable(Of IEdmVocabularyAnnotation)
'Uso
Dim element As IEdmVocabularyAnnotatable
Dim model As IEdmModel
Dim returnValue As IEnumerable(Of IEdmVocabularyAnnotation)
returnValue = element.VocabularyAnnotations(model)
public static IEnumerable<IEdmVocabularyAnnotation> VocabularyAnnotations(
this IEdmVocabularyAnnotatable element,
IEdmModel model
)
[ExtensionAttribute]
public:
static IEnumerable<IEdmVocabularyAnnotation^>^ VocabularyAnnotations(
IEdmVocabularyAnnotatable^ element,
IEdmModel^ model
)
static member VocabularyAnnotations :
element:IEdmVocabularyAnnotatable *
model:IEdmModel -> IEnumerable<IEdmVocabularyAnnotation>
public static function VocabularyAnnotations(
element : IEdmVocabularyAnnotatable,
model : IEdmModel
) : IEnumerable<IEdmVocabularyAnnotation>
Parámetros
- element
Tipo: Microsoft.Data.Edm.IEdmVocabularyAnnotatable
Referencia al objeto que realiza la llamada.
- model
Tipo: Microsoft.Data.Edm.IEdmModel
Modelo cuyas anotaciones se van a comprobar.
Valor devuelto
Tipo: System.Collections.Generic.IEnumerable<IEdmVocabularyAnnotation>
Anotaciones adjuntas al elemento por el modelo o por modelos a los que el modelo hace referencia.
Nota de uso
En Visual Basic y C#, puede llamar a este método como un método de instancia en cualquier objeto del tipo IEdmVocabularyAnnotatable. Cuando utilice la sintaxis del método de instancia para llamar a este método, sáltese este parámetro primero. Para obtener más información, vea https://msdn.microsoft.com/es-es/library/bb384936(v=vs.103) o https://msdn.microsoft.com/es-es/library/bb383977(v=vs.103).