TagList Event

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

Syntax

public event OnTagListHandler OnTagList;

public delegate void OnTagListHandler(object sender, AzurekeysTagListEventArgs e);

public class AzurekeysTagListEventArgs : EventArgs {
  public string KeyName { get; }
  public string VersionId { get; }
  public string Name { get; }
  public string Value { get; }
}
Public Event OnTagList As OnTagListHandler

Public Delegate Sub OnTagListHandler(sender As Object, e As AzurekeysTagListEventArgs)

Public Class AzurekeysTagListEventArgs Inherits EventArgs
  Public ReadOnly Property KeyName As String
  Public ReadOnly Property VersionId As String
  Public ReadOnly Property Name As String
  Public ReadOnly Property Value As String
End Class

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 .NET Edition - Version 20.0 [Build 8157]