Class TransactionalListItem<T>
Wraps an item stored in the TransactionalList<T>.
Inherited Members
Namespace: Silverback.Util
Assembly: Silverback.Integration.dll
Syntax
public class TransactionalListItem<T>
Type Parameters
| Name | Description |
|---|---|
| T | The type of the wrapped item. |
Constructors
| Improve this doc View sourceTransactionalListItem(T)
Initializes a new instance of the TransactionalListItem<T> class.
Declaration
public TransactionalListItem(T item)
Parameters
| Type | Name | Description |
|---|---|---|
| T | item | The actual item to be wrapped. |
Properties
| Improve this doc View sourceInsertDate
Gets the datetime when the item was added to the list.
Declaration
public DateTime InsertDate { get; }
Property Value
| Type | Description |
|---|---|
| DateTime |
Item
Gets the actual item.
Declaration
public T Item { get; }
Property Value
| Type | Description |
|---|---|
| T |