NOTE: This property is now obsolete.
This property will be replaced by the SecurityFolder property.
Specifies the object from which a given object inherits security. The value of this property is a
ReferentialContainmentRelationship
(or DynamicReferentialContainmentRelationship
) that represents the object from which security is inherited. An object can inherit its permissions from its security parent. For example, a
object can inherit the permissions of the
in which it is filed. A
object always inherits its permissions from its parent folder. An object's security parent is reflected in the value of its
property. You can explicitly set the security parent of an object at the time it is filed into a folder by specifing the
parameter of the
method.
Namespace: FileNet.Api.Core
Assembly: FileNet.Api (in filenet.api.dll)
Syntax
Visual Basic (Declaration) |
---|
Property SecurityParent As IReferentialContainmentRelationship |
C# |
---|
IReferentialContainmentRelationship SecurityParent { get; set; } |
C++ |
---|
property IReferentialContainmentRelationship SecurityParent abstract { IReferentialContainmentRelationship get(); void set(IReferentialContainmentRelationship value); } |
J# |
---|
/** property */ public IReferentialContainmentRelationship get_SecurityParent(); /** property */ public void set_SecurityParent(IReferentialContainmentRelationship value); |
JScript |
---|
public function get SecurityParent() : IReferentialContainmentRelationship public function set SecurityParent(value : IReferentialContainmentRelationship); |