DeleteAll Method (Characteristic)
- Last UpdatedNov 06, 2025
- 1 minute read
The DeleteAll() method removes one or more characteristic records from the Characteristic table, as specified by the filter parameters. Passing no filter parameters will remove all characteristic records from the table.
'Declaration
Public Shared Sub DeleteAll( _
ByVal sessionId As Integer, _
ByVal charId As Nullable(Of Integer) _
)
'Usage
Dim sessionId As Integer
Dim charId As Nullable(Of Integer)
Characteristic.DeleteAll(sessionId, charId)
public static void DeleteAll(
int sessionId,
Nullable<int> charId
)
Parameters
- sessionId
- Required. Holds the session ID and thus the user who is making this method call.
- charId
- Optional. Holds the ID of the characteristic being deleted.