Identifies whether objects of the described class have independently settable security.
Unlike a dependently securable object, which inherits its security from a parent object, an independently securable
object has its own Access Control List (ACL) that specifies its security and
ensures that access rights are checked each time a user tries to access the object.
As an example, a IDocument object is the security parent of its dependent IContentElement objects. The value of this
property is True if the given object's security is independently settable (as in the case of IDocument) and is False if the
object's security is inherited from a security parent (as in the case of a IContentElement).
Namespace:
FileNet.Api.Meta
Assembly:
FileNet.Api (in FileNet.Api.dll)
Visual Basic (Declaration) |
---|
ReadOnly Property IsSecurable As Nullable(Of Boolean) |
C# |
---|
Nullable<bool> IsSecurable { get; } |
Visual C++ |
---|
property Nullable<bool> IsSecurable {
Nullable<bool> get ();
} |
JavaScript |
---|
function get_isSecurable();
|