Class ConcurrentHashSet<T>
A thread-safe representation of a
Inheritance
Namespace: Umbraco.Cms.Core.Collections
Assembly: Umbraco.Core.dll
Syntax
public class ConcurrentHashSet<T>
Type Parameters
Name | Description |
---|---|
T |
Properties
View SourceCount
Gets the number of elements contained in the System.
Declaration
public int Count { get; }
Property Value
Type | Description |
---|---|
System. |
The number of elements contained in the System. |
IsReadOnly
Gets a value indicating whether the System.
Declaration
public bool IsReadOnly { get; }
Property Value
Type | Description |
---|---|
System. |
true if the System. |
Methods
View SourceAdd(T)
Adds an item to the System.
Declaration
public void Add(T item)
Parameters
Type | Name | Description |
---|---|---|
T | item | The object to add to the System. |
Exceptions
Type | Condition |
---|---|
System. |
The System. |
Clear()
Removes all items from the System.
Declaration
public void Clear()
Exceptions
Type | Condition |
---|---|
System. |
The System. |
Contains(T)
Determines whether the System.
Declaration
public bool Contains(T item)
Parameters
Type | Name | Description |
---|---|---|
T | item | The object to locate in the System. |
Returns
Type | Description |
---|---|
System. |
true if |
CopyTo(T[], Int32)
Copies the elements of the System.
Declaration
public void CopyTo(T[] array, int index)
Parameters
Type | Name | Description |
---|---|---|
T[] | array | The one-dimensional System. |
System. |
index | The zero-based index in |
Exceptions
Type | Condition |
---|---|
System. |
|
System. |
|
System. |
|
CopyTo(Array, Int32)
Copies the elements of the System.
Declaration
public void CopyTo(Array array, int index)
Parameters
Type | Name | Description |
---|---|---|
Array | array | The one-dimensional System. |
System. |
index | The zero-based index in |
Exceptions
Type | Condition |
---|---|
System. |
|
System. |
|
System. |
|
System. |
The type of the source System. |
GetEnumerator()
Returns an enumerator that iterates through the collection.
Declaration
public IEnumerator<T> GetEnumerator()
Returns
Type | Description |
---|---|
System. |
A System. |
Remove(T)
Removes the first occurrence of a specific object from the
System.
Declaration
public bool Remove(T item)
Parameters
Type | Name | Description |
---|---|---|
T | item | The object to remove from the System. |
Returns
Type | Description |
---|---|
System. |
true if |
Exceptions
Type | Condition |
---|---|
System. |
The System. |
TryAdd(T)
Attempts to add an item to the collection
Declaration
public bool TryAdd(T item)
Parameters
Type | Name | Description |
---|---|---|
T | item |
Returns
Type | Description |
---|---|
System. |