ModelElement.RemoveExtension Method (ModelElement, DomainClassInfo)
Remove any extension of the specified ModelElement that is of a particular domain type.
Namespace: Microsoft.VisualStudio.Modeling
Assembly: Microsoft.VisualStudio.Modeling.Sdk.11.0 (in Microsoft.VisualStudio.Modeling.Sdk.11.0.dll)
Syntax
'Declaration
Public Shared Function RemoveExtension ( _
element As ModelElement, _
extensionClass As DomainClassInfo _
) As Boolean
public static bool RemoveExtension(
ModelElement element,
DomainClassInfo extensionClass
)
public:
static bool RemoveExtension(
ModelElement^ element,
DomainClassInfo^ extensionClass
)
static member RemoveExtension :
element:ModelElement *
extensionClass:DomainClassInfo -> bool
public static function RemoveExtension(
element : ModelElement,
extensionClass : DomainClassInfo
) : boolean
Parameters
element
Type: Microsoft.VisualStudio.Modeling.ModelElementThe element whose extension is to be removed
extensionClass
Type: Microsoft.VisualStudio.Modeling.DomainClassInfoThe domain class of the type of ExtensionElement to remove
Return Value
Type: Boolean
true if an extension of the particular type was found and removed, else false
Remarks
Note that assuming the Extensions collection is maintained through the Extensibility API then there can be only one extension of a particular type present, so only the first found is removed.
.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.