| EntityPolicies Property |
Gets or sets the security policy instances associated with the entity
Namespace:
SanteDB.Core.Model.Entities
Assembly:
SanteDB.Core.Model (in SanteDB.Core.Model.dll) Version: 2.2.1
Syntax public List<SecurityPolicyInstance> Policies { get; set; }
Public Property Policies As List(Of SecurityPolicyInstance)
Get
Set
public:
virtual property List<SecurityPolicyInstance^>^ Policies {
List<SecurityPolicyInstance^>^ get () sealed;
void set (List<SecurityPolicyInstance^>^ value) sealed;
}
abstract Policies : List<SecurityPolicyInstance> with get, set
override Policies : List<SecurityPolicyInstance> with get, set
Property Value
Type:
ListSecurityPolicyInstanceImplements
ISecurablePoliciesRemarks
This property allows authors to tag an act with a particular security policy. Here the
security policies may be something akin to "Taboo information" or "Research Only". From there
the SanteDB policy decision point will determine whether or not the particular piece of
data should be exposed or masked based on user credentials.
See Also