Browse tags on base UDT type

Is it possible to browse tags on the base UDT type?

To clarify:
We have tags of type B which inherits type A
We have tags of type C which inherits type A

Now we like to browse all tags with base type A.

Browse tags in what way? You just want to find any instances of ‘UDT A’ that exist in the whole tag provider?

Thanks for your quick reply.

Yes, that’s the behavior we like to see.

We tried the system.tag.browseTags function:
system.tag.browseTags(parentPath=’’,udtParentType=“TypeB”,recursive=True) finds all tags of type B, but
system.tag.browseTags(parentPath=’’,udtParentType=“TypeA”,recursive=True) gives no result. We hoped this would give all tags of type B and type C.

This is exactly the behavior I was hoping for as well. I am trying to find all tags that are or inherit from a tag type. The parameter name “udtParentType” implies this is how it would work, but I have not had any luck. Have your received any update on this?