ExtensionMethodsIsProfessionalOnly Method |
Determines whether the test item can only be used in Professional version.
Namespace:
Hummingbird.TestFramework
Assembly:
Hummingbird.TestFramework (in Hummingbird.TestFramework.dll) Version: 1.2.0.0
Syntax public static bool IsProfessionalOnly(
this Type type
)
<ExtensionAttribute>
Public Shared Function IsProfessionalOnly (
type As Type
) As Boolean
public:
[ExtensionAttribute]
static bool IsProfessionalOnly(
Type^ type
)
[<ExtensionAttribute>]
static member IsProfessionalOnly :
type : Type -> bool
Parameters
- type
- Type: SystemType
The type.
Return Value
Type:
Booleantrue if the test item is professional only otherwise,
false.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
Type. 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).
See Also