ExtensionMethods.FindVocabularyAnnotations Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Sobrecargas
FindVocabularyAnnotations(IEdmModel, IEdmVocabularyAnnotatable) |
Obtém anotações de vocabulário de um elemento annotatable definidas em um modelo específico e modelos referenciados por esse modelo. |
FindVocabularyAnnotations<T>(IEdmModel, IEdmVocabularyAnnotatable, String, String) |
Obtém anotações de vocabulário de um elemento annotatable que associam um termo específico. |
FindVocabularyAnnotations<T>(IEdmModel, IEdmVocabularyAnnotatable, IEdmTerm, String) |
Obtém anotações de vocabulário de um elemento annotatable que associam um termo específico. |
FindVocabularyAnnotations<T>(IEdmModel, IEdmVocabularyAnnotatable, String) |
Obtém anotações de vocabulário de um elemento annotatable que associam um termo específico. |
FindVocabularyAnnotations<T>(IEdmModel, IEdmVocabularyAnnotatable, IEdmTerm) |
Obtém anotações de vocabulário de um elemento annotatable que associam um termo específico. |
FindVocabularyAnnotations(IEdmModel, IEdmVocabularyAnnotatable)
Obtém anotações de vocabulário de um elemento annotatable definidas em um modelo específico e modelos referenciados por esse modelo.
public static System.Collections.Generic.IEnumerable<Microsoft.OData.Edm.Vocabularies.IEdmVocabularyAnnotation> FindVocabularyAnnotations (this Microsoft.OData.Edm.IEdmModel model, Microsoft.OData.Edm.Vocabularies.IEdmVocabularyAnnotatable element);
static member FindVocabularyAnnotations : Microsoft.OData.Edm.IEdmModel * Microsoft.OData.Edm.Vocabularies.IEdmVocabularyAnnotatable -> seq<Microsoft.OData.Edm.Vocabularies.IEdmVocabularyAnnotation>
<Extension()>
Public Function FindVocabularyAnnotations (model As IEdmModel, element As IEdmVocabularyAnnotatable) As IEnumerable(Of IEdmVocabularyAnnotation)
Parâmetros
- model
- IEdmModel
O modelo a ser pesquisado.
- element
- IEdmVocabularyAnnotatable
Elemento para verificar se há anotações.
Retornos
Anotações anexadas ao elemento por esse modelo ou por modelos referenciados por esse modelo.
Aplica-se a
FindVocabularyAnnotations<T>(IEdmModel, IEdmVocabularyAnnotatable, String, String)
Obtém anotações de vocabulário de um elemento annotatable que associam um termo específico.
public static System.Collections.Generic.IEnumerable<T> FindVocabularyAnnotations<T> (this Microsoft.OData.Edm.IEdmModel model, Microsoft.OData.Edm.Vocabularies.IEdmVocabularyAnnotatable element, string termName, string qualifier) where T : Microsoft.OData.Edm.Vocabularies.IEdmVocabularyAnnotation;
static member FindVocabularyAnnotations : Microsoft.OData.Edm.IEdmModel * Microsoft.OData.Edm.Vocabularies.IEdmVocabularyAnnotatable * string * string -> seq<'T (requires 'T :> Microsoft.OData.Edm.Vocabularies.IEdmVocabularyAnnotation)> (requires 'T :> Microsoft.OData.Edm.Vocabularies.IEdmVocabularyAnnotation)
<Extension()>
Public Iterator Function FindVocabularyAnnotations(Of T As IEdmVocabularyAnnotation) (model As IEdmModel, element As IEdmVocabularyAnnotatable, termName As String, qualifier As String) As IEnumerable(Of T)
Parâmetros de tipo
- T
Tipo da anotação que está sendo retornada.
Parâmetros
- model
- IEdmModel
Modelo a ser pesquisado.
- element
- IEdmVocabularyAnnotatable
Elemento para verificar se há anotações.
- termName
- String
Nome do termo a ser pesquisado.
- qualifier
- String
Qualificador a ser aplicado.
Retornos
Anotações anexadas ao elemento por esse modelo ou por modelos referenciados por esse modelo que associam o termo ao qualificador fornecido.
Aplica-se a
FindVocabularyAnnotations<T>(IEdmModel, IEdmVocabularyAnnotatable, IEdmTerm, String)
Obtém anotações de vocabulário de um elemento annotatable que associam um termo específico.
public static System.Collections.Generic.IEnumerable<T> FindVocabularyAnnotations<T> (this Microsoft.OData.Edm.IEdmModel model, Microsoft.OData.Edm.Vocabularies.IEdmVocabularyAnnotatable element, Microsoft.OData.Edm.Vocabularies.IEdmTerm term, string qualifier) where T : Microsoft.OData.Edm.Vocabularies.IEdmVocabularyAnnotation;
static member FindVocabularyAnnotations : Microsoft.OData.Edm.IEdmModel * Microsoft.OData.Edm.Vocabularies.IEdmVocabularyAnnotatable * Microsoft.OData.Edm.Vocabularies.IEdmTerm * string -> seq<'T (requires 'T :> Microsoft.OData.Edm.Vocabularies.IEdmVocabularyAnnotation)> (requires 'T :> Microsoft.OData.Edm.Vocabularies.IEdmVocabularyAnnotation)
<Extension()>
Public Function FindVocabularyAnnotations(Of T As IEdmVocabularyAnnotation) (model As IEdmModel, element As IEdmVocabularyAnnotatable, term As IEdmTerm, qualifier As String) As IEnumerable(Of T)
Parâmetros de tipo
- T
Tipo da anotação que está sendo retornada.
Parâmetros
- model
- IEdmModel
Modelo a ser pesquisado.
- element
- IEdmVocabularyAnnotatable
Elemento para verificar se há anotações.
- term
- IEdmTerm
Termo a ser pesquisado.
- qualifier
- String
Qualificador a ser aplicado.
Retornos
Anotações anexadas ao elemento por esse modelo ou por modelos referenciados por esse modelo que associam o termo ao qualificador fornecido.
Aplica-se a
FindVocabularyAnnotations<T>(IEdmModel, IEdmVocabularyAnnotatable, String)
Obtém anotações de vocabulário de um elemento annotatable que associam um termo específico.
public static System.Collections.Generic.IEnumerable<T> FindVocabularyAnnotations<T> (this Microsoft.OData.Edm.IEdmModel model, Microsoft.OData.Edm.Vocabularies.IEdmVocabularyAnnotatable element, string termName) where T : Microsoft.OData.Edm.Vocabularies.IEdmVocabularyAnnotation;
static member FindVocabularyAnnotations : Microsoft.OData.Edm.IEdmModel * Microsoft.OData.Edm.Vocabularies.IEdmVocabularyAnnotatable * string -> seq<'T (requires 'T :> Microsoft.OData.Edm.Vocabularies.IEdmVocabularyAnnotation)> (requires 'T :> Microsoft.OData.Edm.Vocabularies.IEdmVocabularyAnnotation)
<Extension()>
Public Function FindVocabularyAnnotations(Of T As IEdmVocabularyAnnotation) (model As IEdmModel, element As IEdmVocabularyAnnotatable, termName As String) As IEnumerable(Of T)
Parâmetros de tipo
- T
Tipo da anotação que está sendo retornada.
Parâmetros
- model
- IEdmModel
Modelo a ser pesquisado.
- element
- IEdmVocabularyAnnotatable
Elemento para verificar se há anotações.
- termName
- String
Nome do termo a ser pesquisado.
Retornos
Anotações anexadas ao elemento por esse modelo ou por modelos referenciados por esse modelo que associam o termo.
Aplica-se a
FindVocabularyAnnotations<T>(IEdmModel, IEdmVocabularyAnnotatable, IEdmTerm)
Obtém anotações de vocabulário de um elemento annotatable que associam um termo específico.
public static System.Collections.Generic.IEnumerable<T> FindVocabularyAnnotations<T> (this Microsoft.OData.Edm.IEdmModel model, Microsoft.OData.Edm.Vocabularies.IEdmVocabularyAnnotatable element, Microsoft.OData.Edm.Vocabularies.IEdmTerm term) where T : Microsoft.OData.Edm.Vocabularies.IEdmVocabularyAnnotation;
static member FindVocabularyAnnotations : Microsoft.OData.Edm.IEdmModel * Microsoft.OData.Edm.Vocabularies.IEdmVocabularyAnnotatable * Microsoft.OData.Edm.Vocabularies.IEdmTerm -> seq<'T (requires 'T :> Microsoft.OData.Edm.Vocabularies.IEdmVocabularyAnnotation)> (requires 'T :> Microsoft.OData.Edm.Vocabularies.IEdmVocabularyAnnotation)
<Extension()>
Public Function FindVocabularyAnnotations(Of T As IEdmVocabularyAnnotation) (model As IEdmModel, element As IEdmVocabularyAnnotatable, term As IEdmTerm) As IEnumerable(Of T)
Parâmetros de tipo
- T
Tipo da anotação que está sendo retornada.
Parâmetros
- model
- IEdmModel
Modelo a ser pesquisado.
- element
- IEdmVocabularyAnnotatable
Elemento para verificar se há anotações.
- term
- IEdmTerm
Termo a ser pesquisado.
Retornos
Anotações anexadas ao elemento por esse modelo ou por modelos referenciados por esse modelo que associam o termo.