SafeRegistryHandle Constructeurs

Définition

Surcharges

SafeRegistryHandle()

Crée un SafeRegistryHandle.

SafeRegistryHandle(IntPtr, Boolean)

Initialise une nouvelle instance de la classe SafeRegistryHandle.

SafeRegistryHandle()

Source:
SafeRegistryHandle.cs

Crée un SafeRegistryHandle.

public:
 SafeRegistryHandle();
public SafeRegistryHandle ();
Public Sub New ()

S’applique à

SafeRegistryHandle(IntPtr, Boolean)

Source:
SafeRegistryHandle.cs

Initialise une nouvelle instance de la classe SafeRegistryHandle.

public:
 SafeRegistryHandle(IntPtr preexistingHandle, bool ownsHandle);
public SafeRegistryHandle (IntPtr preexistingHandle, bool ownsHandle);
[System.Security.SecurityCritical]
public SafeRegistryHandle (IntPtr preexistingHandle, bool ownsHandle);
new Microsoft.Win32.SafeHandles.SafeRegistryHandle : nativeint * bool -> Microsoft.Win32.SafeHandles.SafeRegistryHandle
[<System.Security.SecurityCritical>]
new Microsoft.Win32.SafeHandles.SafeRegistryHandle : nativeint * bool -> Microsoft.Win32.SafeHandles.SafeRegistryHandle
Public Sub New (preexistingHandle As IntPtr, ownsHandle As Boolean)

Paramètres

preexistingHandle
IntPtr

nativeint

Objet qui représente le handle préexistant à utiliser.

ownsHandle
Boolean

true pour libérer de manière fiable le handle pendant la phase de finalisation ; sinon, false pour empêcher une libération fiable.

Attributs

Remarques

Il n’est pas recommandé de spécifier false pour ownsHandle .

S’applique à