TagList Event

Fires once for each tag returned when a key's information is retrieved.

Syntax

ANSI (Cross Platform)
virtual int FireTagList(AzureKeysTagListEventParams *e);
typedef struct {
const char *KeyName;
const char *VersionId;
const char *Name;
const char *Value; int reserved; } AzureKeysTagListEventParams; Unicode (Windows) virtual INT FireTagList(AzureKeysTagListEventParams *e);
typedef struct {
LPCWSTR KeyName;
LPCWSTR VersionId;
LPCWSTR Name;
LPCWSTR Value; INT reserved; } AzureKeysTagListEventParams;
- (void)onTagList:(NSString*)keyName :(NSString*)versionId :(NSString*)name :(NSString*)value;
#define EID_AZUREKEYS_TAGLIST 9

virtual INT CLOUDKEYS_CALL FireTagList(LPSTR &lpszKeyName, LPSTR &lpszVersionId, LPSTR &lpszName, LPSTR &lpszValue);

Remarks

This event fires once for each tag returned when GetKeyInfo is called.

KeyName reflects the name of the key.

VersionId reflects the Id of the key version.

Name reflects the name of the tag.

Value reflects the value of the tag.

Copyright (c) 2022 /n software inc. - All rights reserved.
Cloud Keys 2020 C++ Edition - Version 20.0 [Build 8157]