ModelElementExtensionMethods.RemoveExtension Method (ModelElement, ExtensionElement)
Remove a specified ExtensionElement from the extensions of this ModelElement.
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 RemoveExtension ( _
element As ModelElement, _
extension As ExtensionElement _
) As Boolean
public static bool RemoveExtension(
this ModelElement element,
ExtensionElement extension
)
[ExtensionAttribute]
public:
static bool RemoveExtension(
ModelElement^ element,
ExtensionElement^ extension
)
static member RemoveExtension :
element:ModelElement *
extension:ExtensionElement -> bool
public static function RemoveExtension(
element : ModelElement,
extension : ExtensionElement
) : boolean
Parameters
element
Type: Microsoft.VisualStudio.Modeling.ModelElementThe element whose extension is to be removed
extension
Type: Microsoft.VisualStudio.Modeling.ExtensionElementThe extension to be removed
Return Value
Type: Boolean
true if the specified extension was found and removed, else false
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
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.