|
BroConnectionSendEvent Method (Byte, Int32) |
Enqueues a serialized event directly into the send buffer for this
BroConnection.
Namespace: BroccoliSharpAssembly: BroccoliSharp (in BroccoliSharp.dll) Version: 1.0.5434.15853
Syntax public bool SendEvent(
byte[] data,
int length
)
Public Function SendEvent (
data As Byte(),
length As Integer
) As Boolean
member SendEvent :
data : byte[] *
length : int -> bool
public boolean SendEvent(
byte[] data,
int length
)
function SendEvent(data, length);
Parameters
- data
- Type: SystemByte
Serialized event. - length
- Type: SystemInt32
Length of serialized event.
Return Value
Type:
Booleantrue if successful; otherwise,
false.
Exceptions Remarks
Enqueues the given event data into the transmit buffer of this
BroConnection.
length bytes of
data must correspond to a single event.
See Also