Condividi tramite


REFERENCE_TYPE

Specifica il tipo di riferimento.

enum enum_REFERENCE_TYPE { 
   REF_TYPE_WEAK   = 0x0001,
   REF_TYPE_STRONG = 0x0002
};
typedef DWORD REFERENCE_TYPE;
public enum enum_REFERENCE_TYPE { 
   REF_TYPE_WEAK   = 0x0001,
   REF_TYPE_STRONG = 0x0002
};

Membri

  • REF_TYPE_WEAK
    specifica un riferimento debole. Non può essere combinato con REF_TYPE_STRONG.

  • REF_TYPE_STRONG
    Specifica un riferimento forte. Non può essere combinato con REF_TYPE_WEAK.

Note

Utilizzato come membro di dwRefType DEBUG_REFERENCE_INFORMATION della struttura.

Passato come parametro IDebugReference2:: SetReferenceType al metodo.

Requisiti

intestazione: msdbg.h

Spazio dei nomi: Microsoft.VisualStudio.Debugger.Interop

Assembly: Microsoft.VisualStudio.Debugger.Interop.dll

Vedere anche

Riferimenti

enumerazioni (debug di Visual Studio)

DEBUG_REFERENCE_INFORMATION

IDebugReference2:: SetReferenceType