MIP SDK - Get camera description property

Hi,

Cameras have Description property (see the attached screenshot), how can we get this property using MIP SDK?

Item does not have a separate field called Description and Item.Properties also does not contain it.

Thank you,

Vadym

The description property is not part of the Configuration object. It is not implemented.

There is a workaround that you can use the Configuration API. Let me show you with a small snippet of code:

string GetCameraDescription(VideoOS.Platform.Item camera)
{
        var configAPI_camera = new VideoOS.Platform.ConfigurationItems.Camera(camera.FQID);
        return configAPI_camera.Description;
}