You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
BUG:
My message contains a List property.
When I choose this message from the messages list in SendMessage window, the TargetParameterCountException exception is thrown.
REASON:
The exception is thrown while updating the property label and List is treated as a complex type and label wants to add all properties of List type, whereas one of them is string[Int32] and is causes an exception in ServiceBusMQ.TypeExtensions,GetAttribValue() when try to:
"p.GetValue(obj, null);"
SOLUTION:
I suggest that you add the following code in ServiceBusMQ.TypeExtensions,GetAttribValue(), line 109:
if (p.GetIndexParameters().Count() > 0)
return "";
The text was updated successfully, but these errors were encountered:
Additionally, lists are displayed as "List`1" and user does not know the generic type.
It would be nice in the TypeExtensions.GetDisplayName() method to replace the following code:
Still, after my fix there are errors in other places of the application (with List property): when I click the "right arrow" icon in front of the property:
Hi!
BUG:
My message contains a List property.
When I choose this message from the messages list in SendMessage window, the TargetParameterCountException exception is thrown.
REASON:
The exception is thrown while updating the property label and List is treated as a complex type and label wants to add all properties of List type, whereas one of them is string[Int32] and is causes an exception in ServiceBusMQ.TypeExtensions,GetAttribValue() when try to:
"p.GetValue(obj, null);"
SOLUTION:
I suggest that you add the following code in ServiceBusMQ.TypeExtensions,GetAttribValue(), line 109:
if (p.GetIndexParameters().Count() > 0)
return "";
The text was updated successfully, but these errors were encountered: