ModelElementExtensionMethods.AddExtension Method (ModelElement, Type)

Extend this ModelElement with a newly instantiated extension of the specified type. An InvalidOperationException will be thrown if the element already has an extension of that type.

Namespace:  Microsoft.VisualStudio.Modeling.Extensibility
Assembly:  Microsoft.VisualStudio.Modeling.Sdk.11.0 (in Microsoft.VisualStudio.Modeling.Sdk.11.0.dll)

Syntax

'Declaration
<ExtensionAttribute> _
Public Shared Function AddExtension ( _
    element As ModelElement, _
    extensionType As Type _
) As ExtensionElement
public static ExtensionElement AddExtension(
    this ModelElement element,
    Type extensionType
)
[ExtensionAttribute]
public:
static ExtensionElement^ AddExtension(
    ModelElement^ element, 
    Type^ extensionType
)
static member AddExtension : 
        element:ModelElement * 
        extensionType:Type -> ExtensionElement
public static function AddExtension(
    element : ModelElement, 
    extensionType : Type
) : ExtensionElement

Parameters

  • extensionType
    Type: Type

Return Value

Type: Microsoft.VisualStudio.Modeling.ExtensionElement
The newly instantiated and added extension

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type ModelElement. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

.NET Framework Security

See Also

Reference

ModelElementExtensionMethods Class

AddExtension Overload

Microsoft.VisualStudio.Modeling.Extensibility Namespace