SecureBlackbox 2020 .NET Edition

Questions / Feedback?

Request Event

Fires when a request is received from the client.

Syntax

public event OnRequestHandler OnRequest;

public delegate void OnRequestHandler(object sender, KmipserverRequestEventArgs e);

public class KmipserverRequestEventArgs : EventArgs {
  public long ConnectionId { get; }
  public string Operation { get; }
  public string Username { get; }
  public bool Reject { get; set; }
}
Public Event OnRequest As OnRequestHandler

Public Delegate Sub OnRequestHandler(sender As Object, e As KmipserverRequestEventArgs)

Public Class KmipserverRequestEventArgs Inherits EventArgs
  Public ReadOnly Property ConnectionId As Long
  Public ReadOnly Property Operation As String
  Public ReadOnly Property Username As String
  Public Property Reject As Boolean
End Class

Remarks

The Operation parameter specifies the operation to perform, and Username the originator of the request. Use the Reject parameter to reject the request.

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