ICorDebugSymbolProvider::GetStaticFieldSymbols Method

Gets the static field symbols that correspond to a typespec signature.

Syntax

HRESULT GetStaticFieldSymbols(
   [in] ULONG32 cbSignature,
   [in, size_is(cbSignature)]  BYTE typeSig[],
   [in] ULONG32 cRequestedSymbols,
   [out] ULONG32 *pcFetchedSymbols,
   [out, size_is(cRequestedSymbols), length_is(*pcFetchedSymbols)] ICorDebugStaticFieldSymbol *pSymbols[]
);

Parameters

cbSignature [in] The number of bytes in the typeSig array.

typeSig [in] A byte array that contains the typespec signature.

cRequestedSymbols [in] The number of symbols requested.

pcFetchedSymbols [out] A pointer to the number of symbols retrieved by the method.

pSymbols [out] A pointer to an ICorDebugStaticFieldSymbol array that contains the requested static field symbols.

Remarks

Note

This method is available with .NET Native only.

Requirements

Platforms: See System Requirements.

Header: CorDebug.idl, CorDebug.h

Library: CorGuids.lib

.NET Framework Versions: Available since 4.6, .NET Native only

See also