|
BroConnectionSendEvent Method (String, BroValue) |
Attempts to send an event to a Bro agent with the specified name and parameters.
Namespace: BroccoliSharpAssembly: BroccoliSharp (in BroccoliSharp.dll) Version: 1.0.5434.15853
Syntax public bool SendEvent(
string name,
params BroValue[] parameters
)
Public Function SendEvent (
name As String,
ParamArray parameters As BroValue()
) As Boolean
member SendEvent :
name : string *
parameters : BroValue[] -> bool
public boolean SendEvent(
String name,
BroValue[] parameters
)
function SendEvent(name, ... parameters);
Parameters
- name
- Type: SystemString
Name of the event to send. - parameters
- Type: BroccoliSharpBroValue
Parameters to add to event.
Return Value
Type:
Booleantrue if the event was sent or queued for later transmission; otherwise
false on error.
Exceptions See Also