[Diese Dokumentation ist noch nicht fertig und kann sich bis zur entgültigen Version noch ändern.]
Assembly: DNCore (in DNCore.dll) Version: 1.4.4679.19807 (1.4.0.0)
Ermittelt ob eine Erweiterung von dem Objekt unterstützt wird.
Namespace: DynamicNode.ModelAssembly: DNCore (in DNCore.dll) Version: 1.4.4679.19807 (1.4.0.0)
Syntax
| C# |
|---|
public bool IsExtensionSupported( string extId ) |
| Visual Basic |
|---|
Public Function IsExtensionSupported ( _ extId As String _ ) As Boolean |
| F# |
|---|
abstract IsExtensionSupported : extId:string -> bool override IsExtensionSupported : extId:string -> bool |
Parameters
- extId
- Type: System..::..String
Die ID der Erweiterung.
Return Value
true, wenn die Erweiterung unterstützt wird, sonst false.Implements
IExtensible<(Of <(<'T>)>)>..::..IsExtensionSupported(String)
Remarks
Es wird BeforeUseExtension(String) aufgerufen.
Dadurch wird die gesuchte Erweiterung evtl. geladen,
falls sie nicht bereits geladen ist.
Exceptions
| Exception | Condition |
|---|---|
| System..::..ArgumentNullException | Wird geworfen, wenn null für extId übergeben wurde. |