 | ActPolicies Property |
Gets or sets the security policy instances associated with the act
Namespace: SanteDB.Core.Model.ActsAssembly: SanteDB.Core.Model (in SanteDB.Core.Model.dll) Version: 3.0.2081-alpha+0a330d5f5a5d3cb3e6e945ef530e94ac5671b49c
Syntaxpublic List<SecurityPolicyInstance> Policies { get; set; }Public Property Policies As List(Of SecurityPolicyInstance)
Get
Set
public:
property List<SecurityPolicyInstance^>^ Policies {
List<SecurityPolicyInstance^>^ get ();
void set (List<SecurityPolicyInstance^>^ value);
}member Policies : List<SecurityPolicyInstance> with get, set
Property Value
ListSecurityPolicyInstance
Remarks
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