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
- model
Type: Microsoft.Data.Edm.IEdmModel
The model containing the annotation.
- element
Type: Microsoft.Data.Edm.IEdmElement
The annotated element.
- 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.103) or https://msdn.microsoft.com/en-us/library/bb383977(v=vs.103).