What are MxModelReflection.Tokens?

0
Can someone point me toward the documentation that explains what the Token object in the MxModelReflection is used for?   I'm particularly interested in its FindMember attribute, as I would like to utilize any functionality that will allow me to search for a member upon giving it an MxObjectType, even traversing references to other types until it finds that member.
asked
1 answers
1

A token can be used to replace parts of strings like 'Hello {%NAME%}' and get 'Hello Tyler'.

use ReplaceToken to achieve this.

 

See this or this post

 

For finding Members you don't need tokens. You can search in the MxObjectMembers. But the token logic may help you with that.

answered