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