myDATATools.getPeppolVatex Method

Get the full list of vatExemptionCodes according to peppol. 
This method returns data for the provLine.peppolExemptionCode and provLine.peppolExemptionText fields. For more information about each exemption code, check the Peppol Vatex 
This function is not available in the Trial Version.
Public Function getPeppolVatex() As Dictionary(Of String, String)
This language is not supported or no code example is available.
public Dictionary<string, string> getPeppolVatex()
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> vatex = mdt.getGovs();
 foreach (var v in vatex)
 {
     Console.WriteLine("  vatex Code: " & vatex.Key);
     Console.WriteLine("vatex reason: " & vatex.Value);
 }
 					
This language is not supported or no code example is available.
 Dim mdt as myDATATools = new myDATATools("Arbitrans User", "Arbitrans Key")
 Dim vatex As Dictionary(Of String, String) = mdt.getPeppolVatex()
 For Each v In vatex
     Console.WriteLine("  vatex Code: " & vatex.Key)
     Console.WriteLine("vatex reason: " & vatex.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