METADATA_ADDRESS_RETVAL
Questa struttura rappresenta un valore restituito da un metodo o una funzione.
typedef struct _tagMETADATA_ADDRESS_RETVAL {
_mdToken tokMethod;
DWORD dwCorType;
DWORD dwSigSize;
BYTE rgSig[10];
} METADATA_ADDRESS_RETVAL;
public struct METADATA_ADDRESS_RETVAL {
public int tokMethod;
public uint dwCorType;
public uint dwSigSize;
public byte[] rgSig;
}
termini
tokMethod
ID del metodo questo valore restituito è relativo.dwCorType
il tipo di base di valore restituito. Si tratta di un valore dall'enumerazione di CorElementType definita nel file di .NET Framework SDK corhdr.h.dwSigSize
La dimensione della firma di valore restituito (come archiviato in rgSig).rgSig
Una matrice di byte che costituiscono la firma del valore restituito.
Note
Questa struttura fa parte dell'DEBUG_ADDRESS_UNION unione nella struttura quando il campo di dwKind della struttura di DEBUG_ADDRESS_UNION è impostato su ADDRESS_KIND_RETVAL (un valore ADDRESS_KIND dell'enumerazione).
Requisiti
intestazione: sh.h
Spazio dei nomi: Microsoft.VisualStudio.Debugger.Interop
Assembly: Microsoft.VisualStudio.Debugger.Interop.dll