BeforeQueryKey Event

Fires before a registry key's information is retrieved.

Syntax

public event OnBeforeQueryKeyHandler OnBeforeQueryKey;

public delegate void OnBeforeQueryKeyHandler(object sender, CbregistryBeforeQueryKeyEventArgs e);

public class CbregistryBeforeQueryKeyEventArgs : EventArgs {
  public IntPtr KeyContext { get; }
  public int RequestedFields { get; }
  public DateTime LastWriteTime { get; set; }
  public string Name { get; set; }
  public string ClassName { get; set; }
  public int SubKeys { get; set; }
  public int MaxNameLength { get; set; }
  public int MaxClassNameLength { get; set; }
  public int Values { get; set; }
  public int MaxValueNameLength { get; set; }
  public int MaxValueDataSize { get; set; }
  public bool VirtualizationCandidate { get; set; }
  public bool VirtualizationEnabled { get; set; }
  public bool VirtualTarget { get; set; }
  public bool VirtualStore { get; set; }
  public bool VirtualSource { get; set; }
  public bool Processed { get; set; }
  public bool FireAfterEvent { get; set; }
  public bool StopFiltering { get; set; }
  public int ResultCode { get; set; }
}
Public Event OnBeforeQueryKey As OnBeforeQueryKeyHandler

Public Delegate Sub OnBeforeQueryKeyHandler(sender As Object, e As CbregistryBeforeQueryKeyEventArgs)

Public Class CbregistryBeforeQueryKeyEventArgs Inherits EventArgs
  Public ReadOnly Property KeyContext As IntPtr
  Public ReadOnly Property RequestedFields As Integer
  Public Property LastWriteTime As DateTime
  Public Property Name As String
  Public Property ClassName As String
  Public Property SubKeys As Integer
  Public Property MaxNameLength As Integer
  Public Property MaxClassNameLength As Integer
  Public Property Values As Integer
  Public Property MaxValueNameLength As Integer
  Public Property MaxValueDataSize As Integer
  Public Property VirtualizationCandidate As Boolean
  Public Property VirtualizationEnabled As Boolean
  Public Property VirtualTarget As Boolean
  Public Property VirtualStore As Boolean
  Public Property VirtualSource As Boolean
  Public Property Processed As Boolean
  Public Property FireAfterEvent As Boolean
  Public Property StopFiltering As Boolean
  Public Property ResultCode As Integer
End Class

Remarks

This event fires before a registry key's information is retrieved.

Applications only need to handle this event if they've added a standard filter rule that includes the REG_CE_BEFORE_QUERY_KEY flag.

The KeyContext parameter is a placeholder for application-defined data associated with the registry key. Please refer to the Contexts topic for more information. Note that this event does not expose the registry key's name for performance reasons; applications that need it should store it in KeyContext during the BeforeCreateKey/BeforeOpenKey event so that it can be retrieved when this event fires.

The RequestedFields parameter indicates which pieces of information about the key were requested. The value of this parameter is a combination of one or more of the following:

REG_KEYFIELD_LASTWRITETIME1A registry key's last write time.

REG_KEYFIELD_NAME2A registry key's name.

REG_KEYFIELD_MAXNAMELENGTH4A registry key's longest subkey name.

REG_KEYFIELD_CLASSNAME8A registry key's class name.

REG_KEYFIELD_MAXCLASSNAMELENGTH16A registry key's longest subkey class name.

REG_KEYFIELD_SUBKEYS32The number of subkeys a registry key has.

REG_KEYFIELD_VALUES64The number of values a registry key has.

REG_KEYFIELD_MAXVALUENAMELENGTH128A registry key's longest value name.

REG_KEYFIELD_MAXVALUEDATASIZE256A registry key's largest value data size.

REG_KEYFIELD_VIRTUALIZATIONINFO512A registry key's virtualization information.

The LastWriteTime parameter specifies when the key was last changed, specified in UTC.

The Name parameter specifies the key's name. The maximum length of a registry key name is 255 characters.

The ClassName parameter specifies the key's class name. The maximum length of a registry key class name is 255 characters.

The SubKeys parameter specifies the number of subkeys that the key has.

The MaxNameLength parameter specifies the length, in bytes, of the key's longest subkey name.

The MaxClassNameLength parameter specifies the length, in bytes, of the key's longest subkey class name.

The Values parameter specifies the number of values the key has.

The MaxValueNameLength parameter specifies the length, in bytes, of the key's longest value name.

The MaxValueDataSize parameter specifies the length, in bytes, of the subkey's largest value data size.

The VirtualizationCandidate parameter specifies whether the key is part of the virtualization namespace scope.

The VirtualizationEnabled parameter specifies whether virtualization is enabled on the key. This parameter can only be true if VirtualizationCandidate is true.

The VirtualTarget parameter specifies whether the key is a virtual key. This parameter can only be true if both VirtualizationCandidate and VirtualizationEnabled are both false; and its value is only valid on virtual store key handles.

The VirtualStore parameter specifies whether the key is part of the virtual store path.

The VirtualSource parameter specifies whether the key has ever been virtualized. This parameter can only be true if VirtualizationCandidate is true.

The Processed parameter indicates whether the underlying request has been handled successfully. Applications should set this parameter to true if they've handled the request themselves (this will prevent the corresponding After* event from being called). Note that this parameter's value is ignored if an error is returned via ResultCode.

The FireAfterEvent parameter specifies whether the corresponding After* event should be fired; it is true by default. Note that, regardless of how this parameter is set, the corresponding After* event will not fire if Processed is true, or if an error code is returned via ResultCode.

The StopFiltering parameter specifies whether the component's system driver should ignore all further operations for the registry key; it is false by default. Applications may set this parameter to true to prevent any further events from firing for the registry key.

The ResultCode parameter will always be 0 when the event is fired. If the event cannot be handled in a "successful" manner for some reason (e.g., a resource isn't available, security checks failed, etc.), set it to a non-zero value to report an appropriate error. Please refer to the Error Reporting and Handling topic for more information.

This event is fired synchronously; please refer to the Event Types topic for more information.

Copyright (c) 2022 Callback Technologies, Inc. - All rights reserved.
CBFS Filter 2020 .NET Edition - Version 20.0 [Build 8317]