Share via


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

Sets an annotation value on an annotatable element.

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

Syntax

'Declaration
<ExtensionAttribute> _
Public Shared Sub SetAnnotationValue(Of T As Class) ( _
    model As IEdmModel, _
    element As IEdmElement, _
    value As T _
)
'Usage
Dim model As IEdmModel 
Dim element As IEdmElement 
Dim value As T

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

Type Parameters

  • T
    The type of the annotation being set.

Parameters

  • value
    Type: T
    The value of the new annotation.

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).

See Also

Reference

ExtensionMethods Class

SetAnnotationValue Overload

Microsoft.Data.Edm Namespace