Class TransactionalDictionarySharedItems<TKey, TValue>
Registered as Singleton holds the actual items list shared between the scoped instances of the TransactionalDictionary<TKey, TValue>.
Inheritance
System.Object
TransactionalDictionarySharedItems<TKey, TValue>
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Silverback.Util
Assembly: Silverback.Integration.dll
Syntax
public sealed class TransactionalDictionarySharedItems<TKey, TValue>
Type Parameters
Name | Description |
---|---|
TKey | The type of the keys in the dictionary. |
TValue | The type of the values in the dictionary. |
Properties
| Improve this doc View sourceItems
Gets the underlying System.Collections.Generic.Dictionary<TKey, TValue> containing the persisted items.
Declaration
public Dictionary<TKey, TValue> Items { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.Dictionary<TKey, TValue> |