KeyRingList Event

Fires once for each key ring when listing key rings.

Syntax

public event OnKeyRingListHandler OnKeyRingList;

public delegate void OnKeyRingListHandler(object sender, GooglekmsKeyRingListEventArgs e);

public class GooglekmsKeyRingListEventArgs : EventArgs {
  public string Name { get; }
  public string CreationDate { get; }
}
Public Event OnKeyRingList As OnKeyRingListHandler

Public Delegate Sub OnKeyRingListHandler(sender As Object, e As GooglekmsKeyRingListEventArgs)

Public Class GooglekmsKeyRingListEventArgs Inherits EventArgs
  Public ReadOnly Property Name As String
  Public ReadOnly Property CreationDate As String
End Class

Remarks

This event fires once for each key ring returned when ListKeyRings or GetKeyRingInfo is called.

Name reflects the name of the key ring.

CreationDate reflects the key ring's creation date, formatted as an RFC 3339 UTC timestamp.

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