myDATATools.getPeppolCPV Method

Get the CPV Code list according to peppol. 
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.
public Dictionary<string, string> getPeppolCPV( 
string language 
)
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>
Example
 
 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.

.NET Framework

Supported in: 3.5 or newer

In this article

Definition