Click or drag to resize
BroccoliSharp BroVectorItem Property
Gets or sets the BroValue at the specified index.

Namespace: BroccoliSharp
Assembly: BroccoliSharp (in BroccoliSharp.dll) Version: 1.0.5434.15853
Syntax
public BroValue this[
	int index
] { get; set; }

Parameters

index
Type: SystemInt32
The zero-based index of the element to get or set.

Return Value

Type: BroValue
The BroValue at the specified index, or null if there was an issue retrieving value.

Implements

IListTItemInt32
Exceptions
ExceptionCondition
ObjectDisposedExceptionCannot get or set BroValue, Bro vector is disposed.
ArgumentOutOfRangeExceptionindex is not a valid index in this BroVector.
ArgumentNullExceptionCannot set a nullBroValue.
InvalidOperationExceptionFailed to update BroValue at index.
See Also