LAUNCH_FLAGS

Spécifie les indicateurs de lancement de débogage.

Syntaxe

public enum enum_LAUNCH_FLAGS {
    LAUNCH_DEBUG      = 0x0000,
    LAUNCH_NODEBUG    = 0x0001,
    LAUNCH_ENABLE_ENC = 0x0002,
    LAUNCH_MERGE_ENV  = 0x0004
};

Champs

LAUNCH_DEBUG
Lance le processus de débogage.

LAUNCH_NODEBUG
Lance le processus sans le déboguer.

LAUNCH_ENABLE_ENC
DÉCONSEILLÉ, N’UTILISEZ PAS.

LAUNCH_MERGE_ENV
Lance le processus et fusionne l’environnement avec l’hôte de lancement.

Notes

Ces valeurs sont passées en tant qu’argument à la méthode LaunchSuspended .

Ces indicateurs peuvent être combinés avec un bit.OR

Spécifications

En-tête : msdbg.h

Espace de noms : Microsoft.VisualStudio.Debugger.Interop

Assembly : Microsoft.VisualStudio.Debugger.Interop.dll

Voir aussi