Cloud Storage Integrator - Online Help
Cloud Storage Integrator
Questions / Feedback?

ObjectList Event

Fired for every object when ListObjects , or upload when ListMultipartUploads is called.

Syntax

[VB.NET]
Public Event OnObjectList As OnObjectListHandler
[C#]
public event OnObjectListHandler OnObjectList;

public delegate void OnObjectListHandler(object sender, Amazons3ObjectListEventArgs e);

class Amazons3ObjectListEventArgs : EventArgs {
  string ObjectName {get;}
  string ObjectModifiedDate {get;}
  long ObjectSize {get;}
  string ETag {get;}
  string OwnerId {get;}
  string OwnerName {get;}
  string UploadId {get;}
  string OtherData {get;}
}

Remarks

The bucket name is specified by the Bucket property. This event can be used to inspect the details of existing objects. It provides information such as its name, creation date, size, etag, owner id and owner name. The "OtherData" is reserved for future use.

When calling ListObjects the following parameters are applicable:

  • ObjectName
  • ObjectModifiedDate
  • ObjectSize
  • ETag
  • OwnerId
  • OwnerName
When calling ListMultipartUploads the following parameters are applicable:
  • ObjectName
  • OwnerId
  • OwnerName
  • UploadId

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