A bitmask combining bit values representing the security access rights granted on a given object. The property behavior is as follows:

  • On an AccessPermission, the access rights are granted on a given object to the grantee specified on the access permission.
  • On an AccessPermissionDescription, the access rights are those that may be granted on a given object.


Namespace: FileNet.Api.Security
Assembly: FileNet.Api (in filenet.api.dll)

Syntax

Visual Basic (Declaration)
Property AccessMask As Nullable(Of Integer)
C#
Nullable<int> AccessMask { get; set; }
C++
property Nullable<int> AccessMask abstract  {
    Nullable<int> get();
    void set(Nullable<intvalue);
}
J#
/** property */
public Nullable<int> get_AccessMask();

/** property */
public void set_AccessMask(Nullable<intvalue);
JScript
public function get AccessMask() : Nullable<int>

public function set AccessMask(value : Nullable<int>);

Remarks

See Also