ProvBratnet.TransferTable Method

Transfers all orders from one table to another.
Public Function TransferTable( _ 
ByVal branch As Integer, _ 
ByVal FromTable As String, _ 
ByVal ToTable As String
) As Dictionary(Of String, String)
This language is not supported or no code example is available.
public Dictionary<string, string> TransferTable( 
int branch
string FromTable
string ToTable 
)
This language is not supported or no code example is available.

Parameters

branch
int

The branch number is as sent in the issuer.branch.

FromTable
string

The table number is as sent in the elements.tableAA

ToTable
string

The new table number, ex T58

Return Value

Dictionary<string, string>
Example
 
 var bra = new ProvBratnet("bratnetUser", "bratnetPassword", "bratnetAPIKey", "arbUser", "arbKey", false);
 Dictionary<string, string> result = bra.TransferTable(0, "T57", "T58");
 					
This language is not supported or no code example is available.
 Dim bra As ProvBratnet = New ProvBratnet("bratnetUser", "bratnetPassword", "bratnetAPIKey", "arbUser", "arbKey", False)
 Dim result As Dictionary(Of String, String) = bra.TransferTable(0, "T57", "T58")
 					
This language is not supported or no code example is available.

.NET Framework

Supported in: 3.5 or newer

In this article

Definition