ExtensionMethods.GetAnnotationValue<T> Method (IEdmModel, IEdmElement)

Gets an annotation value from an annotatable element.

Namespace:  Microsoft.Data.Edm
Assembly:  Microsoft.Data.Edm (in Microsoft.Data.Edm.dll)

Syntax

'Declaration
<ExtensionAttribute> _
Public Shared Function GetAnnotationValue(Of T As Class) ( _
    model As IEdmModel, _
    element As IEdmElement _
) As T
'Usage
Dim model As IEdmModel 
Dim element As IEdmElement 
Dim returnValue As T

returnValue = model.GetAnnotationValue(element)
public static T GetAnnotationValue<T>(
    this IEdmModel model,
    IEdmElement element
)
where T : class
[ExtensionAttribute]
public:
generic<typename T>
where T : ref class 
static T GetAnnotationValue(
    IEdmModel^ model, 
    IEdmElement^ element
)
static member GetAnnotationValue : 
        model:IEdmModel * 
        element:IEdmElement -> 'T  when 'T : not struct
JScript does not support generic types and methods.

Type Parameters

  • T
    The type of the annotation being returned.

Parameters

Return Value

Type: T
The annotation value.

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.113) or https://msdn.microsoft.com/en-us/library/bb383977(v=vs.113).

Remarks

Strongly-typed wrappers for unnamed annotations keyed by CLR type.

See Also

Reference

ExtensionMethods Class

GetAnnotationValue Overload

Microsoft.Data.Edm Namespace