I'm trying to determine if a interface is decorated with a specific attribute. For example, I have the following interface:
<MyCustomAttribute()> _
Public Interface IMyInterface
Function Function1
Sub DeleteWorkflowInstanceMap(ByVal instanceId As Guid)
Sub InsertWorkflowInstanceMap(ByVal instanceId As Guid, ByVal aliasName As String)
End Interface
How do I determine if IMyInterface is decorated with the MyCustomAttribute attribute?