System.Collections.Concurrent.ConcurrentStack<T> Members

The members of System.Collections.Concurrent.ConcurrentStack<T> are listed below.

See Also: Inherited members from System.Object

Public Constructors

Initializes a new instance of the System.Collections.Concurrent.ConcurrentStack`1 class.

Documentation for this section has not yet been entered.

Public Properties

[read-only]
Countint.

Gets the number of elements contained in the System.Collections.Concurrent.ConcurrentStack`1.

[read-only]
IsEmptybool.

Gets a value that indicates whether the System.Collections.Concurrent.ConcurrentStack`1 is empty.

Public Methods

Clear()

Removes all objects from the System.Collections.Concurrent.ConcurrentStack`1.

CopyTo(T[], int)
Documentation for this section has not yet been entered.
GetEnumerator() : IEnumerator<T>

Returns an enumerator that iterates through the System.Collections.Concurrent.ConcurrentStack`1.

Push(T)
Documentation for this section has not yet been entered.
PushRange(T[])
Documentation for this section has not yet been entered.
PushRange(T[], int, int)
Documentation for this section has not yet been entered.
ToArray() : T[]

Copies the items stored in the System.Collections.Concurrent.ConcurrentStack`1 to a new array.

TryPeek(out T) : bool
Documentation for this section has not yet been entered.
TryPop(out T) : bool
Documentation for this section has not yet been entered.
TryPopRange(T[]) : int
Documentation for this section has not yet been entered.
TryPopRange(T[], int, int) : int
Documentation for this section has not yet been entered.

Explicitly Implemented Interface Members

ICollection.CopyTo

Copies the elements of the ICollection to an Array, starting at a particular Array index.

IEnumerable.GetEnumerator

Returns an enumerator that iterates through a collection.

[read-only]
ICollection.IsSynchronizedbool.

Gets a value indicating whether access to the ICollection is synchronized with the SyncRoot.

[read-only]
ICollection.SyncRootobject.

Gets an object that can be used to synchronize access to the ICollection. This property is not supported.

System.Collections.Concurrent.IProducerConsumerCollection<T>.TryAddDocumentation for this section has not yet been entered.
System.Collections.Concurrent.IProducerConsumerCollection<T>.TryTakeDocumentation for this section has not yet been entered.