PublicKeyTokenType Simple Type
Defines the value used to identify the public part of a public/private key pair.
<xs:simpleType name="PublicKeyTokenType">
<xs:restriction
base="string"
>
<xs:pattern
value="([0-9]|[a-f]|[A-F]){16"
/>
</xs:restriction>
</xs:simpleType>
Patterns
The following pattern is defined by the PublicKeyTokenType simple type:
([0-9]|[a-f]|[A-F]){16
A 16-character hex string that is a 64-bit hash of the public key. For example, 31BF3856AD364E35.