MemberInfoExtensions.HasMetadataToken(MemberInfo) Method

Definition

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.

Applies to