This document is provided on an "AS IS" basis without warranties of any kind. Smartsite iXperion class libraries may change in future releases.
Syntax
C# | Copy Code |
---|---|
public class SynchronizedDictionary<T, U> |
Visual Basic (Declaration) | Copy Code |
---|---|
Public Class SynchronizedDictionary(Of T, U) |
Type Parameters
- T
- U
The type exposes the following members.
Public Constructors
Name | Description | |
---|---|---|
SynchronizedDictionary<(Of <(<'T, U>)>)> |
Constructor
|
Public Methods
Name | Description | |
---|---|---|
Add | Overloaded. | |
Clear |
Removes all the items in this dictionary.
|
|
Contains |
Returns true if this dictionary contains the given item.
|
|
ContainsKey |
Returns true if this dictionary contains the given key.
|
|
CopyTo |
Copies the items in this dictionary to the array, starting at the given index.
|
|
Dispose |
Disposes this instance.
|
|
Equals | (Inherited from Object.) | |
GetEnumerator |
Gets an enumerator for this dictionary.
|
|
GetHashCode | (Inherited from Object.) | |
GetType | (Inherited from Object.) | |
Remove | Overloaded. | |
ToString | (Inherited from Object.) | |
TryGetValue |
Attempts to get the value of the key.
|
Protected Methods
Name | Description | |
---|---|---|
Finalize | (Inherited from Object.) | |
MemberwiseClone | (Inherited from Object.) |
Public Properties
Name | Description | |
---|---|---|
Count |
Returns the number of items in this dictionary.
|
|
IsReadOnly |
Returns if this dictionary is readonly or not.
|
|
Item |
Indexer to get or set a value in this dictionary.
|
|
Keys |
Returns the collection of keys in this dictionary.
|
|
Values |
Reutrns the collection of values.
|