Microsoft Internet Security and Acceleration Server 2000

FpcSessionsAccessRights

The FpcSessionsAccessRights enumerated type contains values that specify access rights for sessions.

enum FpcSessionsAccessRights {
  fpcSessionsRight_Delete				 = 0x10000,
  fpcSessionsRight_Read_Control		 = 0x20000,
  fpcSessionsRight_Write_Dac			= 0x40000,
  fpcSessionsRight_Write_Owner			= 0x80000,
  fpcSessionsRight_Synchronize			= 0x100000,
  fpcSessionsRight_Access_System_Security = 0x1000000,
  fpcSessionsRight_Generic_Read		 = 0x80000000,
  fpcSessionsRight_Generic_Write		= 0x40000000,
  fpcSessionsRight_Generic_Execute		= 0x20000000,
  fpcSessionsRight_Generic_All			= 0x10000000,
  fpcSessionsRight_Read				 = 0x00000001,
  fpcSessionsRight_Stop				 = 0x00000002
};

Members

fpcSessionsRight_Delete
The right to delete the object.
fpcSessionsRight_Read_Control
The right to read the information in the object's security descriptor, not including the information in the system access control list (SACL).
fpcSessionsRight_Write_Dac
The right to modify the discretionary access-control list (DACL) in the object's security descriptor.
fpcSessionsRight_Write_Owner
The right to change the owner in the object's security descriptor.
fpcSessionsRight_Synchronize
The right to use the object for synchronization. This enables a thread to wait until the object is in the signaled state. Some object types do not support this access right.
fpcSessionsRight_Access_System_Security
Access to the system security.
fpcSessionsRight_Generic_Read
Read access.
fpcSessionsRight_Generic_Write
Write access.
fpcSessionsRight_Generic_Execute
Execute access.
fpcSessionsRight_Generic_All
Read, write, and execute access.
fpcSessionsRight_Read
The right to read the session information.
fpcSessionsRight_Stop
The right to stop any session.

f