DeleteAll Method (DataEntrySched)
- Last UpdatedNov 06, 2025
- 1 minute read
The DeleteAll() method removes one or more certifcation/item link records from the Cert_Item_Link table, as specified by the filter parameters. Passing no filter parameters will remove all certification/item link records from the table.
'Declaration
Public Shared Sub DeleteAll( _
ByVal sessionId As Integer, _
ByVal keyId As Nullable(Of Integer), _
ByVal keyType As Nullable(Of Integer), _
ByVal category As String, _
ByVal valueName As String _
)
'Usage
Dim sessionId As Integer
Dim keyId As Nullable(Of Integer)
Dim keyType As Nullable(Of Integer)
Dim category As String
Dim valueName As String
DataEntrySched.DeleteAll(sessionId, keyId, keyType, category, valueName)
public static void DeleteAll(
int sessionId,
Nullable<int> keyId,
Nullable<int> keyType,
string category,
string valueName
)
Parameters
- sessionId
Required. Holds the session ID and thus the user who is making this method call.
- keyId
- Required. Holds the primary key or row_id value of a row for which data is being collected.
- keyType
- Required. Holds a number that represents the type of data collection being done.
- category
- Required. Holds the category of the data collection.
- valueName
- Required. Holds the specific data or set of values to be collected within this category.