| ActExtensions Property |
Gets a list of all extensions associated with the act
Namespace:
SanteDB.Core.Model.Acts
Assembly:
SanteDB.Core.Model (in SanteDB.Core.Model.dll) Version: 2.2.1
Syntax public List<ActExtension> Extensions { get; set; }
Public Property Extensions As List(Of ActExtension)
Get
Set
public:
property List<ActExtension^>^ Extensions {
List<ActExtension^>^ get ();
void set (List<ActExtension^>^ value);
}
member Extensions : List<ActExtension> with get, set
Property Value
Type:
ListActExtensionRemarks
An extension allows developers to store additional data about a particular act in a manner
which the original SanteDB authors did not intend. This can be things such as equipment
used to record an observation, etc.
The key difference beetween an extension and a tag is that extensions are versioned whereas tags
are not
See Also