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

Metadata Event

Fired when valid blob or container metadata is returned.

Syntax

[VB.NET]
Public Event OnMetadata As OnMetadataHandler
[C#]
public event OnMetadataHandler OnMetadata;

public delegate void OnMetadataHandler(object sender, BlobMetadataEventArgs e);

class BlobMetadataEventArgs : EventArgs {
  string ObjectName {get;}
  string Name {get;}
  string Value {get;}
}

Remarks

Metadata may be returned for a blob or container as a result of a different method calls.

For containers, metadata will be returned if GetContainerMetadata is called. Metadata will also be returned if ListContainers is called and IncludeMetadata is set to true.

For blobs, metadata will be returned if GetBlobMetadata is called. Metadata will also be returned if ListBlobs is called and IncludeMetadata is set to true.

The ObjectName parameter holds the name of the current object for which the event is firing.

The Name parameter holds the name of the current metadata element.

The Value parameter holds the value of the current metadata element.

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