IPWorks Cloud 2020 C++ Edition

Questions / Feedback?

ShareList Event

Fires once for each share returned when listing shares.

Syntax

ANSI (Cross Platform)
virtual int FireShareList(AzureFileShareListEventParams *e);
typedef struct {
const char *Name;
const char *ModifiedTime;
const char *ETag;
int Quota; int reserved; } AzureFileShareListEventParams; Unicode (Windows) virtual INT FireShareList(AzureFileShareListEventParams *e);
typedef struct {
LPCWSTR Name;
LPCWSTR ModifiedTime;
LPCWSTR ETag;
INT Quota; INT reserved; } AzureFileShareListEventParams;
- (void)onShareList:(NSString*)name :(NSString*)modifiedTime :(NSString*)ETag :(int)quota;
#define EID_AZUREFILE_SHARELIST 8

virtual INT IPWORKSCLOUD_CALL FireShareList(LPSTR &lpszName, LPSTR &lpszModifiedTime, LPSTR &lpszETag, INT &iQuota);

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 C++ Edition - Version 20.0 [Build 8265]