The RandomAccessQueue<(Of <(<'T>)>)> type exposes the following members.

Properties

  Name Description
Public property Capacity
Current capacity of the queue - the size of the buffer.
Public property Count
The number of items in the queue.
Public property IsReadOnly
Returns false, to indicate that this queue is not read-only.
Public property IsSynchronized
Returns false, to indicate that this queue is not synchronized.
Public property Item
Indexer for the class, allowing items to be retrieved by index and replaced.
Public property SyncRoot
An object reference to synchronize on when using the queue from multiple threads. This reference isn't used anywhere in the class itself. The same reference will always be returned for the same queue, and this will never be the same as the reference returned for a different queue, even a clone.

See Also