Loop through get queueitem ouptut which is of System.Collections.Generic.IEnumerable[UiPath.Core.QueueItem] type

I have updated my queue with low and high priority status, using get queue item activity stored my output in ienumerable core.queue item type.
how to retreive the item values of the same.

Use a ‘For Each’ loop with TypeArgument set to QueueItem.

item.SpecificContent("ItemName").ToString should give you the value associated with that particular ItemName.

Let me know if thats what you are looking for.

Thanks,
Rammohan B.

1 Like

I am not able to get the specific content property for the item.

Change your TypeArgument property of ‘For Each’ activity to QueueItem.

Thanks,
Rammohan B.

2 Likes

my apologies, after changing the for each argument to queue item , i am able to retreive queue values.
Thanks much for the information.
Yella.

2 Likes

Hi @Rammohan91 . Does the “QueueItem” property still exist in the For Loop? I can only find QueueItems and this won’t allow me to use the suggestions listed here.

Sure see below: