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

ContainerList Event

Fired for every container when ListContainers is called.

Syntax

[VB.NET]
Public Event OnContainerList As OnContainerListHandler
[C#]
public event OnContainerListHandler OnContainerList;

public delegate void OnContainerListHandler(object sender, BlobContainerListEventArgs e);

class BlobContainerListEventArgs : EventArgs {
  string Name {get;}
  string ETag {get;}
  string URL {get;}
  string LastModified {get;}
}

Remarks

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

The Name parameter holds the name of the current container.

The ETag parameter holds the ETag value of the current container.

The URL parameter holds the URL of the current container.

The LastModified parameter holds the last modified date of the current container.

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