Description
Returns whether the specified type is supported.
Syntax
Parameters
See Also
Example
Determine if the specified condition type is supported.
[C#] |
---|
// Check if the specified condition type is supported.
if (provider.Conditions.Factory.IsTypeSupported(conditionType))
{
//Create a Condition with the supported Type
IAgCrdnCondition condition = provider.Conditions.Factory.Create(
"MyCondition", string.Empty,
conditionType);
}
|
|
Determine if the specified condition type is supported.
[Visual Basic .NET] |
---|
' Check if the specified condition type is supported.
If provider.Conditions.Factory.IsTypeSupported(conditionType) Then
'Create a Condition with the supported Type
Dim condition As IAgCrdnCondition = provider.Conditions.Factory.Create("MyCondition", String.Empty, conditionType)
End If
|
|