|
BroTypeExtensionsIsUnsupportedType Method |
Determines if
BroType is a currently unsupported type.
Namespace: BroccoliSharpAssembly: BroccoliSharp (in BroccoliSharp.dll) Version: 1.0.5434.15853
Syntax public static bool IsUnsupportedType(
this BroType type
)
<ExtensionAttribute>
Public Shared Function IsUnsupportedType (
type As BroType
) As Boolean
static member IsUnsupportedType :
type : BroType -> bool
/** @attribute ExtensionAttribute */
public static boolean IsUnsupportedType(
BroType type
)
BroccoliSharp.BroTypeExtensions.IsUnsupportedType = function(type);
Parameters
- type
- Type: BroccoliSharpBroType
Bro type to test.
Return Value
Type:
Booleantrue if Bro
type is an unsupported type; otherwise,
false.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
BroType. 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