|
BroTableContainsKey Method (Object, BroType, String) |
Determines whether this
BroTable contains specified
key of
keyType.
Namespace: BroccoliSharpAssembly: BroccoliSharp (in BroccoliSharp.dll) Version: 1.0.5434.15853
Syntax public bool ContainsKey(
Object key,
BroType keyType,
string keyTypeName = null
)
Public Function ContainsKey (
key As Object,
keyType As BroType,
Optional keyTypeName As String = Nothing
) As Boolean
member ContainsKey :
key : Object *
keyType : BroType *
?keyTypeName : string
(* Defaults:
let _keyTypeName = defaultArg keyTypeName null
*)
-> bool
public boolean ContainsKey(
Object key,
BroType keyType,
String keyTypeName = null
)
function ContainsKey(key, keyType, keyTypeName);
Parameters
- key
- Type: SystemObject
The key to locate in this BroTable. - keyType
- Type: BroccoliSharpBroType
The BroType of the key. - keyTypeName (Optional)
- Type: SystemString
Optional name of specialized type of key.
Return Value
Type:
Booleantrue if
key is found in this
BroTable; otherwise,
false.
Exceptions See Also