Ejemplo n.º 1
0
    public void OnTableQueued(TableQueuedEventArgs table)
    {
        EventHandler <TableQueuedEventArgs> handler = TableQueued;

        if (handler != null)
        {
            handler(this, table);
        }
    }
Ejemplo n.º 2
0
 void tableQueue_TableQueued(object sender, TableQueuedEventArgs e)
 {
     //  do something with table
     //  I can't figure out is how to pass custom object in 3rd parameter
     RunPostProcess.BeginInvoke(e.Table, new AsyncCallback(PostComplete), filename);
 }