myDATATools.getPeppolItemClass Method

Get the Item Classification Code list according to peppol. 
This method returns data for the peppolItemClass.itemClass 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 getPeppolItemClass() As Dictionary(Of String, String)
This language is not supported or no code example is available.
public Dictionary<string, string> getPeppolItemClass()
This language is not supported or no code example is available.

Return Value

Dictionary<string, string>
Example
 
 myDATATools mdt = new myDATATools("Arbitrans User", "Arbitrans Key");
 Dictionary<string, string> classes = mdt.getPeppolItemClass();
 foreach (var cls In classes)
 {
     Console.WriteLine("       Classification Code: " & cls.Key);
     Console.WriteLine("Classification Description: " & cls.Value);
 }
 					
This language is not supported or no code example is available.
 Dim mdt as myDATATools = new myDATATools("Arbitrans User", "Arbitrans Key")
 Dim classes As Dictionary(Of String, String) = mdt.getPeppolItemClass()
 For Each cls In classes
     Console.WriteLine("       Classification Code: " & cls.Key)
     Console.WriteLine("Classification Description: " & cls.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