The SynchronizedSet<(Of <(<'T>)>)> type exposes the following members.
Constructors
Name | Description | |
---|---|---|
SynchronizedSet<(Of <(<'T>)>)> |
Constructs a thread-safe Set wrapper.
|
Methods
Name | Description | |
---|---|---|
Add(T) |
Adds the specified element to this set if it is not already present.
(Inherited from Set<(Of <(<'T>)>)>.) | |
Add(T) |
Adds the specified element to this set if it is not already present.
| |
AddAll(ICollection<(Of <<'(T>)>>)) |
Adds all the elements in the specified collection to the set if they are not already present.
(Inherited from Set<(Of <(<'T>)>)>.) | |
AddAll(ICollection<(Of <<'(T>)>>)) |
Adds all the elements in the specified collection to the set if they are not already present.
| |
Clear |
Removes all objects from the set.
(Overrides Set<(Of <(<'T>)>)>..::..Clear()()()().) | |
Clone |
Returns a clone of the Set instance.
(Overrides Set<(Of <(<'T>)>)>..::..Clone()()()().) | |
Contains(T) |
Returns trueTruetruetrue (True in Visual Basic) if this set contains the specified element.
(Inherited from Set<(Of <(<'T>)>)>.) | |
Contains(T) |
Returns trueTruetruetrue (True in Visual Basic) if this set contains the specified element.
| |
ContainsAll(ICollection<(Of <<'(T>)>>)) |
Returns trueTruetruetrue (True in Visual Basic) if the set contains all the elements in the specified collection.
(Inherited from Set<(Of <(<'T>)>)>.) | |
ContainsAll(ICollection<(Of <<'(T>)>>)) |
Returns trueTruetruetrue (True in Visual Basic) if the set contains all the elements in the specified collection.
| |
CopyTo(array<T>[]()[][], Int32) |
Copies the elements in the Set to an array. The type of array needs
to be compatible with the objects in the Set, obviously.
(Inherited from Set<(Of <(<'T>)>)>.) | |
CopyTo(array<T>[]()[][], Int32) |
Copies the elements in the Set to an array. The type of array needs
to be compatible with the objects in the Set, obviously.
| |
Equals | (Inherited from Object.) | |
ExclusiveOr(ISet<(Of <<'(T>)>>)) |
Performs an "exclusive-or" of the two sets, keeping only the elements that
are in one of the sets, but not in both. The original sets are not modified
during this operation. The result set is a Clone() of this set containing
the elements from the exclusive-or operation.
(Inherited from Set<(Of <(<'T>)>)>.) | |
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) | |
GetEnumerator |
Enumeration is, by definition, not thread-safe. Use a lock on the SyncRoot
to synchronize the entire enumeration process.
(Overrides Set<(Of <(<'T>)>)>..::..GetEnumerator()()()().) | |
GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) | |
GetType | Gets the Type of the current instance. (Inherited from Object.) | |
Intersect(ISet<(Of <<'(T>)>>)) |
Performs an "intersection" of the two sets, where only the elements
that are present in both sets remain. That is, the element is included if it exists in
both sets. The Intersect() operation does not modify the input sets. It returns
a Clone() of this set with the appropriate elements removed.
(Inherited from Set<(Of <(<'T>)>)>.) | |
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) | |
Minus(ISet<(Of <<'(T>)>>)) |
Performs a "minus" of set b from set a. This returns a set of all
the elements in set a, removing the elements that are also in set b.
The original sets are not modified during this operation. The result set is a Clone()
of this Set containing the elements from the operation.
(Inherited from Set<(Of <(<'T>)>)>.) | |
NonGenericCopyTo |
Performs CopyTo when called trhough non-generic ISet (ICollection) interface
(Overrides Set<(Of <(<'T>)>)>..::..NonGenericCopyTo(Array, Int32).) | |
NonGenericExclusiveOr |
Performs ExclusiveOr when called trhough non-generic ISet interface
(Inherited from Set<(Of <(<'T>)>)>.) | |
NonGenericIntersect |
Performs Intersect when called trhough non-generic ISet interface
(Inherited from Set<(Of <(<'T>)>)>.) | |
NonGenericMinus |
Performs Minus when called trhough non-generic ISet interface
(Inherited from Set<(Of <(<'T>)>)>.) | |
NonGenericUnion |
Performs Union when called trhough non-generic ISet interface
(Inherited from Set<(Of <(<'T>)>)>.) | |
Remove(T) |
Removes the specified element from the set.
(Inherited from Set<(Of <(<'T>)>)>.) | |
Remove(T) |
Removes the specified element from the set.
| |
RemoveAll(ICollection<(Of <<'(T>)>>)) |
Remove all the specified elements from this set, if they exist in this set.
(Inherited from Set<(Of <(<'T>)>)>.) | |
RemoveAll(ICollection<(Of <<'(T>)>>)) |
Remove all the specified elements from this set, if they exist in this set.
| |
RetainAll(ICollection<(Of <<'(T>)>>)) |
Retains only the elements in this set that are contained in the specified collection.
(Inherited from Set<(Of <(<'T>)>)>.) | |
RetainAll(ICollection<(Of <<'(T>)>>)) |
Retains only the elements in this set that are contained in the specified collection.
| |
ToString | Returns a string that represents the current object. (Inherited from Object.) | |
Union(ISet<(Of <<'(T>)>>)) |
Performs a "union" of the two sets, where all the elements
in both sets are present. That is, the element is included if it is in either a or b.
Neither this set nor the input set are modified during the operation. The return value
is a Clone() of this set with the extra elements added in.
(Inherited from Set<(Of <(<'T>)>)>.) |
Extension Methods
Name | Description | |
---|---|---|
As<(Of <<'(T>)>>) | (Defined by TypeHelperExtensionMethods.) | |
IsBetween |
Apply a "between" constraint to the named property
Note: throws an exception outside of a QueryOver expression
(Defined by RestrictionExtensions.) | |
IsIn(array<Object>[]()[][]) | Overloaded.
Apply an "in" constraint to the named property
Note: throws an exception outside of a QueryOver expression
(Defined by RestrictionExtensions.) | |
IsIn(ICollection) | Overloaded.
Apply an "in" constraint to the named property
Note: throws an exception outside of a QueryOver expression
(Defined by RestrictionExtensions.) | |
IsProxy | (Defined by NHibernateProxyHelper.) | |
ToTypeParameters | (Defined by ReflectHelper.) |
Properties
Name | Description | |
---|---|---|
Count |
The number of elements contained in this collection.
(Overrides Set<(Of <(<'T>)>)>..::..Count.) | |
IsEmpty |
Returns trueTruetruetrue (True in Visual Basic) if this set contains no elements.
(Overrides Set<(Of <(<'T>)>)>..::..IsEmpty.) | |
IsReadOnly |
Indicates whether given instace is read-only or not
(Overrides Set<(Of <(<'T>)>)>..::..IsReadOnly.) | |
IsSynchronized |
Returns trueTruetruetrue (True in Visual Basic), indicating that this object is thread-safe. The exception to this
is enumeration, which is inherently not thread-safe. Use the SyncRoot object to
lock this object for the entire duration of the enumeration.
(Overrides Set<(Of <(<'T>)>)>..::..IsSynchronized.) | |
SyncRoot |
Returns an object that can be used to synchronize the Set between threads.
(Overrides Set<(Of <(<'T>)>)>..::..SyncRoot.) |