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