ShareList Event

Fires once for each share returned when listing shares.

Syntax

class AzureFileShareListEventParams {
public:
  const QString &Name();
  const QString &ModifiedTime();
  const QString &ETag();
  int Quota();
  int EventRetVal();
  void SetEventRetVal(int iRetVal);
};
// To handle, connect one or more slots to this signal. void ShareList(AzureFileShareListEventParams *e);
// Or, subclass AzureFile and override this emitter function. virtual int FireShareList(AzureFileShareListEventParams *e) {...}

Remarks

This event fires once for each share returned when ListShares or GetShareInfo is called.

Name is the name of the share.

ModifiedTime is the last modified time of the share, formatted according to RFC 1123.

ETag is the ETag of the share.

Quota is the share's space quota, in GB.

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks Cloud 2020 Qt Edition - Version 20.0 [Build 8265]