DeleteAll Method (QmSpecRuleLink)
- Last UpdatedNov 06, 2025
- 1 minute read
The DeleteAll() method deletes one or more qm specification rule link records from the Qm_Spec_Rule_Link table, as specified by the filter parameters. Passing no filter parameters will delete all qm specification rule link records from the table.
'Declaration
Public Shared Sub DeleteAll( _
ByVal sessionId As Integer, _
ByVal qmSpecId As Nullable(Of Integer), _
ByVal ruleId As Nullable(Of Integer) _
)
'Usage
Dim sessionId As Integer
Dim qmSpecId As Nullable(Of Integer)
Dim ruleId As Nullable(Of Integer)
QmSpecRuleLink.DeleteAll(sessionId, qmSpecId, ruleId)
public static void DeleteAll(
int sessionId,
Nullable<int> qmSpecId,
Nullable<int> ruleId
)
Parameters
- sessionId
- Required. Holds the session ID and thus the user who is making this method call.
- qmSpecId
- Required. Holds the ID assigned to the specification that is being linked.
- ruleId
- Required. Holds the rule ID to be linked to the specification ID.