I am a little surprised to see that CustomAttributeData provides no way to determine the actual Type of the actual attribute that it represents.
I can get at the various members, paramaters, etc but cannot seem to get at the Type.
I need to be able to recognize which specific attribute I am dealing with, before I can attempt to look for or access specific members of the attribute.
For now I am using ToString() to see if it contains the name of the attribute class, but surely there is better way?
Cap'n