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

EntityList Event

Fired for every entity when ListEntities is called.

Syntax

[VB.NET]
Public Event OnEntityList As OnEntityListHandler
[C#]
public event OnEntityListHandler OnEntityList;

public delegate void OnEntityListHandler(object sender, TableEntityListEventArgs e);

class TableEntityListEventArgs : EventArgs {
  string PartitionKey {get;}
  string RowKey {get;}
  string URL {get;}
  string LastModified {get;}
}

Remarks

The event is fired once for each entity in the response when ListEntities is called.

The PartitionKey parameter holds the value of the PartitionKey value which identifies the partition in which this entry exists.

The RowKey parameter holds the value of the RowKey which identifies where in the partition the entity exists.

The URL parameter holds the URL of the current item. For instance: "http://youraccount.tables.core.windows.net/Customers(PartitionKey='Customer01',RowKey='')"

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

Note: NextPartitionKey or NextRowKey will be populated if the results are paged. Call ListEntities when either of these properties are specified to retrieve the next set of results.

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