This document is provided on an "AS IS" basis without warranties of any kind. Smartsite iXperion class libraries may change in future releases.
SynchronizedDictionary is a wrapper for other dictionaries to make them synchronized. Access to members is thread safe when wrapped in this class. Note that getting an enumerator is thread safe but looping through the enumation is intrinsically not thread safe.

Namespace: Smartsite.Base
Assembly:  Smartsite.Base (in Smartsite.Base.dll)

Syntax

C#Copy imageCopy Code
public class SynchronizedDictionary<T, U> : <T, U>, 
	<<T, U>>, <<T, U>>, 
	, 
Visual Basic (Declaration)Copy imageCopy Code
Public Class SynchronizedDictionary(Of T, U) _
	Implements (Of T, U), (Of (Of T, U)),  _
	(Of (Of T, U)), , 

Type Parameters

T
Type of the keys in this dictionary.
U
Type of the values in this dictionary.

Inheritance Hierarchy

System..::..Object
  Smartsite.Base..::..SynchronizedDictionary<(Of <(<'T, U>)>)>

See Also

Advanced