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

BlockList Event

Fired for every block when ListBlocks is called.

Syntax

[VB.NET]
Public Event OnBlockList As OnBlockListHandler
[C#]
public event OnBlockListHandler OnBlockList;

public delegate void OnBlockListHandler(object sender, BlobBlockListEventArgs e);

class BlobBlockListEventArgs : EventArgs {
  string Id {get;}
  int BlockType {get;}
  int Size {get;}
}

Remarks

This event is fired for each block returned by the server when ListBlocks is called. The Blocks collection will also be populated after ListBlocks returns and will hold the same information provided through this event.

The Id parameter holds the ID of the current block.

The BlockType parameter holds the type of the current block. Possible values are:

0 (Committed)The current block is committed.
1 (Uncommitted)The current block is not committed.

The Size parameter holds the size of the current block.

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