DelegateGetRegKeyAccessMask Delegate

Definition

Gets the registry subtree to read from the access mask to use in calls to registry key.

public delegate bool DelegateGetRegKeyAccessMask(System::String ^ sRegPath, System::UInt32 dwDesiredAccess, [Runtime::InteropServices::Out] System::UInt32 % dwAccessMask);
public delegate bool DelegateGetRegKeyAccessMask(string sRegPath, uint dwDesiredAccess, out uint dwAccessMask);
type DelegateGetRegKeyAccessMask = delegate of string * uint32 * uint32 -> bool
Public Delegate Function DelegateGetRegKeyAccessMask(sRegPath As String, dwDesiredAccess As UInteger, ByRef dwAccessMask As UInteger) As Boolean 

Parameters

sRegPath
String

The string value of the registry path.

dwDesiredAccess
UInt32

An unsigned integer of the desired access.

dwAccessMask
UInt32

An unsigned integer of the access mask.

Return Value

true if successful; otherwise, false.

Applies to