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

BlobDelimiter Property

The delimiter to be used when listing blobs.

Syntax

[VB.NET]
Public Property BlobDelimiter As String

[C#]
public string BlobDelimiter {get; set;}

Remarks

If this property is set before calling ListBlobs, the delimiter parameter will be sent with the specified value. When a delimiter is specified, the returned blob list will contain BlobPrefix elements. These elements act as a placeholder for all blobs whose names begin with the same substring up to the appearance of the delimiter character(s).

The PrefixList event will fire for each BlobPrefix element returned. Each BlobPrefix can then be used to traverse the virtual namespace hierarchy, by setting Prefix and calling ListBlobs.

Note, the Azure Blob Storage does not support hierarchical structures. However blob names can be used to simulate a virtual hierarchical folder structure.

For example, we have blobs with the following names:

MyCompany, MyCompany/Department1, MyCompany/Department2

If we set BlobDelimiter to "/", calling ListBlobs, will return the "MyCompany" blob. The PrefixList event will also fire for "MyCompany/".

If you then wanted to traverse the blobs contained within the "MyCompany/" virtual folder, you can set Prefix to "MyCompany/" and call ListBlobs. The resulting blob list will contain the "MyCompany/Department1" and "MyCompany/Department2" blobs.

This property is not available at design time.

Default Value

""

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