Azure Integrator V2 - Online Help
Azure Integrator V2
Questions / Feedback?

TableList Event

Fired for every table when ListTables is called.

Syntax

[VB.NET]
Public Event OnTableList As OnTableListHandler
[C#]
public event OnTableListHandler OnTableList;

public delegate void OnTableListHandler(object sender, TableTableListEventArgs e);

class TableTableListEventArgs : EventArgs {
  string Name {get;}
  string URL {get;}
  string LastModified {get;}
}

Remarks

The event is fired once for each table in the response when ListTables is called.

The Name parameter holds the name of the current table.

The URL parameter holds the URL of the current table. For instance: "http://youraccount.table.core.windows.net/Tables('YourTableName')"

The LastModified parameter holds the date on which the table was updated last.

Note: NextTableName will be populated if the results are paged. Call ListTables when NextTableName is populated to retrieve the next set of results.

 
 
Copyright (c) 2017 /n software inc. - All rights reserved.
Build 2.0.6240.0