Get list of hardware device events

I am trying to populate a list of possible hardware device events on a TabUserControl in a Management Client plugin. Ideally, I’d like a list similar to the “Select Driver Event” dialog from the Events tab for a camera:

I can get the _associatedItem for the tab, and look up its Hardware object in the proper RecordingServer. However, the Hardware.HardwareDeviceEventFolder does not contain the event list as I thought it would (even if I call .FillChildren(new stirng[] { “HardwareDeviceEvent” }) on it. Is there someplace else I should look for the events, or am I missing a critical step?

When I test using the Config API Client sample I am able to locate the right settings.

From your description I suspect that you are looking at the Hardware where you should have been looking at the Camera object..

I hope my suspicion is right because then it is easy for you to fix.

Thanks Bo - your response made me realize I was trying to make it way more complicated than necessary! It was indeed the Camera object I needed to inspect.