Update Method (Language)
- Last UpdatedNov 06, 2025
- 2 minute read
The Update() method updates all columns of the specified language string record in the Language table.
public static void Update(
int sessionId,
int langId,
int stringId,
int grpId,
DBString String,
DBString context,
DBString lastEditComment,
ref DateTime lastEditAt
)
Parameters
- sessionId
- Required. Holds the session ID and thus the user who is making this method call.
- langId
Required. Holds the ID of the language for which the string is being updated.
- stringId
Required. Holds the string ID of the language string record that is being updated.
- grpId
- Required. Holds the string group ID of the language string record that is being updated.
- String
- Optional. Holds the string value.
- context
- Optional. Holds the context entry.
- lastEditComment
- Required. Holds comments about why this record is being updated.
- lastEditAt
Required. Holds the date/time when this record was added or last updated, 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 the record was updated by this called method.