LabelList Event

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

Syntax

public event OnLabelListHandler OnLabelList;

public delegate void OnLabelListHandler(object sender, GooglekmsLabelListEventArgs e);

public class GooglekmsLabelListEventArgs : EventArgs {
  public string KeyName { get; }
  public string Name { get; }
  public string Value { get; }
}
Public Event OnLabelList As OnLabelListHandler

Public Delegate Sub OnLabelListHandler(sender As Object, e As GooglekmsLabelListEventArgs)

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

Remarks

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

KeyName reflects the name of the key.

Name reflects the name of the label.

Value reflects the value of the label.

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