ExtensionMethods.GetAnnotationValues Method
Retrieves a set of annotation values. For each requested value, returns null if no annotation with the given name exists for the given element.
Namespace: Microsoft.Data.Edm
Assembly: Microsoft.Data.Edm (in Microsoft.Data.Edm.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function GetAnnotationValues ( _
model As IEdmModel, _
annotations As IEnumerable(Of IEdmDirectValueAnnotationBinding) _
) As Object()
'Usage
Dim model As IEdmModel
Dim annotations As IEnumerable(Of IEdmDirectValueAnnotationBinding)
Dim returnValue As Object()
returnValue = model.GetAnnotationValues(annotations)
public static Object[] GetAnnotationValues(
this IEdmModel model,
IEnumerable<IEdmDirectValueAnnotationBinding> annotations
)
[ExtensionAttribute]
public:
static array<Object^>^ GetAnnotationValues(
IEdmModel^ model,
IEnumerable<IEdmDirectValueAnnotationBinding^>^ annotations
)
static member GetAnnotationValues :
model:IEdmModel *
annotations:IEnumerable<IEdmDirectValueAnnotationBinding> -> Object[]
public static function GetAnnotationValues(
model : IEdmModel,
annotations : IEnumerable<IEdmDirectValueAnnotationBinding>
) : Object[]
Parameters
- model
Type: Microsoft.Data.Edm.IEdmModel
The model in which to find the annotations.
- annotations
Type: System.Collections.Generic.IEnumerable<IEdmDirectValueAnnotationBinding>
The set of requested annotations.
Return Value
Type: array<System.Object[]
A set of annotation values.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type IEdmModel. When you use instance method syntax to call this method, omit the first parameter. For more information, see https://msdn.microsoft.com/en-us/library/bb384936(v=vs.103) or https://msdn.microsoft.com/en-us/library/bb383977(v=vs.103).