Description
Returns true if the specified system type is supported.
Syntax
Parameters
See Also
Example
Determine if the specified System type is supported.
[C#] |
---|
// Check if the specified system type is supported.
if (provider.Systems.Factory.IsTypeSupported(SystemType))
{
//Create a System with supported Type
IAgCrdnSystem system = provider.Systems.Factory.Create("SystemName",
string.Empty, SystemType);
}
|
|
Determine if the specified System type is supported.
[Visual Basic .NET] |
---|
' Check if the specified system type is supported.
If provider.Systems.Factory.IsTypeSupported(SystemType) Then
'Create a System with supported Type
Dim system As IAgCrdnSystem = provider.Systems.Factory.Create("SystemName", String.Empty, SystemType)
End If
|
|