UpdateUserGroupDesc Method
- Last UpdatedNov 06, 2025
- 1 minute read
The UpdateUserGroupDesc() method updates the description of the specified user group.
'Declaration
Public Shared Function UpdateUserGroupDesc( _
ByVal userGrpID As Integer, _
ByVal groupDesc As String, _
ByVal lastEditAt As Nullable(Of Date) _
) As Date
public static DateTime UpdateUserGroupDesc(
int userGrpID,
string groupDesc,
Nullable<DateTime> lastEditAt
)
Parameters
- userGrpID
- Required. Holds the ID of the user group whose description is being updated.
- groupDesc
- Required. Holds the new description to assign to the user group.
- lastEditAt
- Optional. A DateTime value that can be used to avoid data contention. If it is specified, the value must match that value in the database for the update to succeed.
Return Value
Returns a DateTime with the date and time the user group description was updated.