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 Document object can inherit the permissions of the Folder in which it is filed. A Folder object always inherits its permissions from its parent folder. An object's security parent is reflected in the value of its SecurityParent property. You can explicitly set the security parent of an object at the time it is filed into a folder by specifing the defineSecurityParentage parameter of the Folder.File 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);

See Also