GetByKey Method (CertOperLink)
- Last UpdatedNov 06, 2025
- 1 minute read
The GetByKey() method retrieves the specified certification/operation link record from the Cert_Oper_Link table.
'Declaration
Public Shared Function GetByKey( _
ByVal certName As String, _
ByVal processId As String, _
ByVal operId As String _
) As DataSet
'Usage
Dim certName As String
Dim processId As String
Dim operId As String
Dim value As DataSet
value = CertOperLink.GetByKey(certName, processId, operId)
Parameters
- certName
Required. Holds the name of the certification linked to the operation.
- processId
Required. Holds the ID of the process to which the operation belongs.
- operId
- Required. Holds the ID of the operation linked to the certification.
Return Value
Returns a DataSet that contains the DataRow of the specified certification/operation link in the Cert_Oper_Link table. If no matching record for the specified certification/operation link is found, an empty DataSet is returned.