DeleteAll Method (UtilExec)
- Last UpdatedNov 06, 2025
- 1 minute read
The DeleteAll() method removes the utilization exec records for the specified entity from the Util_Exec table. Passing no filter parameters will remove all utilization exec records from the table.
'Declaration
Public Shared Sub DeleteAll( _
ByVal sessionId As Integer, _
ByVal entId As Nullable(Of Integer) _
)
'Usage
Dim sessionId As Integer
Dim entId As Nullable(Of Integer)
UtilExec.DeleteAll(sessionId, entId)
public static void DeleteAll(
int sessionId,
Nullable<int> entId
)
Parameters
- sessionId
- Required. Holds the session ID and thus the user who is making this method call.
- entId
- Optional. Holds the ID of the entity whose utilization exec record is being removed.