MemberInfoExtensions.HasMetadataToken(MemberInfo) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns a value that indicates whether a metadata token is available for the specified member.
public:
[System::Runtime::CompilerServices::Extension]
static bool HasMetadataToken(System::Reflection::MemberInfo ^ member);
public static bool HasMetadataToken (this System.Reflection.MemberInfo member);
static member HasMetadataToken : System.Reflection.MemberInfo -> bool
<Extension()>
Public Function HasMetadataToken (member As MemberInfo) As Boolean
Parameters
- member
- MemberInfo
The member to analyze, as reftype.
Returns
true
if there is a metadata token available for the given member; otherwise, false
.
Remarks
GetMetadataToken throws an exception if a metadata token is not available for the specified member. So use this method to determine whether a metadata token is available before calling GetMetadataToken.