Partager via


SEEK_START

Spécifie la position à partir de laquelle commencer à rechercher dans un flux désassembleur.

Syntaxe

public enum enum_SEEK_START { 
   SEEK_START_BEGIN       = 0x0001,
   SEEK_START_END         = 0x0002,
   SEEK_START_CURRENT     = 0x0003,
   SEEK_START_CODECONTEXT = 0x0004,
   SEEK_START_CODELOCID   = 0x0005
};

Champs

SEEK_START_BEGIN
Commence à rechercher au début du document actif.

SEEK_START_END
Commence à rechercher à la fin du document actif.

SEEK_START_CURRENT
Commence à rechercher à la position actuelle du document actif.

SEEK_START_CODECONTEXT
Commence à rechercher dans le contexte de code donné du document actif.

SEEK_START_CODELOCID
Commence à rechercher à l’identificateur d’emplacement du code donné. Les identificateurs d’emplacement du code sont obtenus en appelant GetCurrentLocation.

Notes

Passé en tant qu’argument à la méthode Seek .

Spécifications

En-tête : msdbg.h

Espace de noms : Microsoft.VisualStudio.Debugger.Interop

Assembly : Microsoft.VisualStudio.Debugger.Interop.dll

Voir aussi