ObjectTransactionExtendedProperties Property |
Extended properties contain temporary (not persisted) values in the object instance.
Namespace:
Aloe.SystemFrameworks.Domain
Assembly:
Aloe.SystemFrameworks.Domain (in Aloe.SystemFrameworks.Domain.dll) Version: 20.1.3.5
Syntaxpublic IDictionary<string, Object> ExtendedProperties { get; }
Public ReadOnly Property ExtendedProperties As IDictionary(Of String, Object)
Get
public:
property IDictionary<String^, Object^>^ ExtendedProperties {
IDictionary<String^, Object^>^ get ();
}
member ExtendedProperties : IDictionary<string, Object> with get
Property Value
Type:
IDictionaryString,
Object
The extended properties.
Remarks
The ExtendedProperties are used by various components to store temporary data
in the object instance.
The data is not persisted, nor it is copied or handled in any way from the framework.
It is up to the users of the object to load/store the necessary data.
See Also