myDATATools.getPeppolCPV Method
This method returns data for the peppolItemClass.itemID field.
For more information about each item classification code, check the Peppol Item Classification
This function is not available in the Trial Version.
Public Function getPeppolCPV( _
ByVal language As String _
) As Dictionary(Of String, String)
This language is not supported or no code example is available.
Parameters
- language
- string
The returned language of CPV.
Options: EN or EL (default EN)
Return Value
Dictionary<string, string>myDATATools mdt = new myDATATools("Arbitrans User", "Arbitrans Key"); Dictionary<string, string> cpvs = mdt.getPeppolCPV("EN"); foreach (var cpv In cpvs) { Console.WriteLine(" Classification Code: " & cpv.Key); Console.WriteLine("Classification Description: " & cpv.Value); }
This language is not supported or no code example is available.
Dim mdt as myDATATools = new myDATATools("Arbitrans User", "Arbitrans Key") Dim cpvs As Dictionary(Of String, String) = mdt.getPeppolCPV("EN") For Each cpv In cpvs Console.WriteLine(" Classification Code: " & cpv.Key) Console.WriteLine("Classification Description: " & cpv.Value) Next
This language is not supported or no code example is available.