Update Method (GrpPrivLink)
- Last UpdatedNov 06, 2025
- 2 minute read
The Update() method updates all columns for the specified group privilege link record from the Grp_Priv_Link table.
public static void Update(
int sessionId,
int grpId,
int privId,
int privValue,
DBString lastEditComment,
ref DateTime lastEditAt
)
Parameters
- sessionId
- Required. Holds the session ID and thus the user who is making this method call.
- grpId
- Required. Holds the group ID of the group privilege link that is being updated.
- privId
- Required. Holds the privilege ID of the group privilege link that is being updated.
- privValue
- Required. Holds the privilege value for the group.
- lastEditComment
- Required. Holds comments about why this record is being updated.
- lastEditAt
Required. Holds the date/time when this record was added or last edited, for optimistic concurrency control. The passed value must match the lastEditAt value in the record for the update to succeed.
Output. Holds the date/time value when this record was updated by this called method.