isResolvedToken property

bool isResolvedToken

Returns true if the token maps to an entry in the WinMD database.

This should return true for most objects, but as noted in https://docs.microsoft.com/en-us/uwp/winrt-cref/winmd-files#type-system-encoding, some types are markers that should never be resolved. For example, WinRT uses the CLR System.Guid type as a marker, but it should not be resolved to the .NET type system.

Implementation

bool get isResolvedToken => reader.IsValidToken(token) == TRUE;