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

BlobList Event

Fired for every blob when ListBlobs is called.

Syntax

[VB.NET]
Public Event OnBlobList As OnBlobListHandler
[C#]
public event OnBlobListHandler OnBlobList;

public delegate void OnBlobListHandler(object sender, BlobBlobListEventArgs e);

class BlobBlobListEventArgs : EventArgs {
  string Name {get;}
  string BlobType {get;}
  string ETag {get;}
  string URL {get;}
  string LeaseStatus {get;}
  string Snapshot {get;}
  long ContentLength {get;}
  string ContentType {get;}
  string ContentEncoding {get;}
  string ContentLanguage {get;}
  string CacheControl {get;}
  string LastModified {get;}
}

Remarks

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

The Name parameter holds the name of the current blob.

The BlobType parameter holds the type of the current blob. Possible values are "BlockBlob" or "PageBlob".

The URL parameter holds the URL of the current blob.

The ETag parameter holds the type of the current blob.

The LeaseStatus parameter holds the lease status of the current blob. Possible values are "locked" or "unlocked".

The Snapshot parameter holds the DateTime value that uniquely identifies a snapshot. If the current blob is not a snapshot, this parameter will be empty.

The ContentLength parameter holds the content size in bytes of the current blob.

The ContentType parameter holds the MIME content type of the current blob.

The ContentEncoding parameter holds the content encoding of the current blob.

The ContentLanguage parameter holds the content language of the current blob.

The CacheControl parameter holds the cache control of the current blob. The Blob service stores this value but does not use or modify it.

The LastModified parameter holds the date and time the current blob was last modified.

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