|
|
BroSet Class |
Namespace: BroccoliSharp
The BroSet type exposes the following members.
| Name | Description | |
|---|---|---|
| BroSet |
Creates a new BroSet.
| |
| BroSet(IEnumerableBroValue) |
Creates a new BroSet from an existing set of BroValue items.
|
| Name | Description | |
|---|---|---|
| Add(BroValue) |
Adds value to this BroSet.
| |
| Add(Object, BroType, String) |
Adds value of type to this BroSet.
| |
| Clear |
Removes all items from this BroSet.
| |
| Clone |
Gets a clone of this BroSet.
| |
| Contains(BroValue) |
Determines whether this BroSet contains specified value.
| |
| Contains(Object, BroType, String) |
Determines whether this BroSet contains specified value of type.
| |
| CopyTo | ||
| Dispose |
Releases all the resources used by this BroSet object.
| |
| Dispose(Boolean) |
Releases the unmanaged resources used by this BroSet object and optionally releases the managed resources.
| |
| Equals | (Inherited from Object.) | |
| ExceptWith |
Removes all elements in the specified collection from the current set.
| |
| Finalize |
Releases the unmanaged resources before this BroSet object is reclaimed by GC.
(Overrides ObjectFinalize.) | |
| GetEnumerator |
Returns an enumerator that iterates through the collection.
| |
| GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) | |
| GetType | Gets the Type of the current instance. (Inherited from Object.) | |
| IntersectWith |
Modifies the current set so that it contains only elements that are also in a specified collection.
| |
| IsProperSubsetOf |
Determines whether the current set is a proper (strict) subset of a specified collection.
| |
| IsProperSupersetOf |
Determines whether the current set is a proper (strict) superset of a specified collection.
| |
| IsSubsetOf |
Determines whether a set is a subset of a specified collection.
| |
| IsSupersetOf |
Determines whether the current set is a superset of a specified collection.
| |
| MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) | |
| Overlaps |
Determines whether the current set overlaps with the specified collection.
| |
| Remove |
Removes the first occurrence of the specified BroValue from this BroSet.
| |
| SetEquals |
Determines whether the current set and the specified collection contain the same elements.
| |
| SymmetricExceptWith |
Modifies the current set so that it contains only elements that are present either in the current set or in the specified collection, but not both.
| |
| ToList |
Converts this BroSet into a ListT.
| |
| ToString | Returns a string that represents the current object. (Inherited from Object.) | |
| UnionWith |
Modifies the current set so that it contains all elements that are present in either the current set or the specified collection.
|
| Name | Description | |
|---|---|---|
| Count |
Gets the number of elements contained in this BroSet.
| |
| IsReadOnly |
Gets a value indicating whether this BroSet is read-only.
| |
| Type |
Gets the BroType of this BroSet.
|
From the perspective of the Broccoli API, a set essentially a BroTable with void value types. Consequently, in BroccoliSharp you can actually implicitly cast a BroTable to a BroSet and the resulting new BroSet will be loaded with all the Keys of the table.