UpdateSystemParameter Method
- Last UpdatedNov 06, 2025
- 1 minute read
The UpdateSystemParameter() method updates the value of the specified system parameter.
'Declaration
Public Function UpdateSystemParameter( _
ByVal attrID As Integer, _
ByVal attrValue As Object, _
ByVal lastEditAt As Nullable(Of Date) _
) As Date
public DateTime UpdateSystemParameter(
int attrID,
object attrValue,
Nullable<DateTime> lastEditAt
)
Parameters
- attrID
- Required. Holds the ID of the system parameter to update.
- attrValue
- Required. Holds the new value of the system parameter.
- lastEditAt
- Optional. An optional date/time 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 the date on which the update occurs.