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